summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2018-05-03 23:11:16 +0100
committerJames Le Cuirot <chewi@gentoo.org>2018-05-03 23:11:38 +0100
commit6ede9b55e00397596b21e05060683f02d5be7842 (patch)
tree9a24c8c04e250ce75ffbda25b22bd78127dce991 /media-libs/leptonica/files
parentmedia-libs/leptonica: Version bump to 1.76.0 (diff)
downloadgentoo-6ede9b55e00397596b21e05060683f02d5be7842.tar.gz
gentoo-6ede9b55e00397596b21e05060683f02d5be7842.tar.bz2
gentoo-6ede9b55e00397596b21e05060683f02d5be7842.zip
media-libs/leptonica: Remove old 1.75.2
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'media-libs/leptonica/files')
-rw-r--r--media-libs/leptonica/files/gnuplot-png.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/media-libs/leptonica/files/gnuplot-png.patch b/media-libs/leptonica/files/gnuplot-png.patch
deleted file mode 100644
index 4e87fca73b3c..000000000000
--- a/media-libs/leptonica/files/gnuplot-png.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 1b3c9b64ee204b3f9371cea624c959b3177c9c1d Mon Sep 17 00:00:00 2001
-From: James Le Cuirot <chewi@aura-online.co.uk>
-Date: Tue, 13 Feb 2018 14:37:32 +0000
-Subject: [PATCH] Skip gnuplot tests if it is missing PNG support
-
----
- prog/reg_wrapper.sh | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/prog/reg_wrapper.sh b/prog/reg_wrapper.sh
-index bc60c82..4afdc08 100755
---- a/prog/reg_wrapper.sh
-+++ b/prog/reg_wrapper.sh
-@@ -32,7 +32,11 @@ TEST_NAME="${TEST_NAME%_reg*}"
-
- case "${TEST_NAME}" in
- baseline|boxa1|colormask|colorspace|dna|enhance|extrema|fpix1|italic|kernel|nearline|projection|rankbin|rankhisto|wordboxes)
-- which gnuplot > /dev/null || which wgnuplot > /dev/null || exec ${@%${TEST}} /bin/sh -c "exit 77" ;;
-+ GNUPLOT=$(type -P gnuplot wgnuplot)
-+
-+ if [ -z "${GNUPLOT}" ] || ! "${GNUPLOT}" -e "set terminal png" 2>/dev/null ; then
-+ exec ${@%${TEST}} /bin/sh -c "exit 77"
-+ fi
- esac
-
- exec ${@%${TEST}} /bin/sh -c "cd \"${srcdir}\" && \"${PWD}/\"${TEST} generate && \"${PWD}/\"${TEST} compare"
---
-2.16.1
-