summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-03-09 06:41:18 +0000
committerSam James <sam@gentoo.org>2023-03-09 06:41:18 +0000
commita80a21a605475095d050ea14833d354338fc9e86 (patch)
treef0ca7b08e9e167ae97411203d62a3b1a57bd94f8 /media-gfx/graphicsmagick/files
parentmedia-gfx/imagemagick: add 6.9.12.77 (diff)
downloadgentoo-a80a21a605475095d050ea14833d354338fc9e86.tar.gz
gentoo-a80a21a605475095d050ea14833d354338fc9e86.tar.bz2
gentoo-a80a21a605475095d050ea14833d354338fc9e86.zip
media-gfx/graphicsmagick: drop 1.3.38-r5, 1.3.39
Bug: https://bugs.gentoo.org/888545 Bug: https://bugs.gentoo.org/890851 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-gfx/graphicsmagick/files')
-rw-r--r--media-gfx/graphicsmagick/files/graphicsmagick-1.3.38-configure-bashism.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/media-gfx/graphicsmagick/files/graphicsmagick-1.3.38-configure-bashism.patch b/media-gfx/graphicsmagick/files/graphicsmagick-1.3.38-configure-bashism.patch
deleted file mode 100644
index 69d5fd50a1bf..000000000000
--- a/media-gfx/graphicsmagick/files/graphicsmagick-1.3.38-configure-bashism.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-# HG changeset patch
-# User Sam James <sam@gentoo.org>
-# Date 1659168362 -3600
-# Sat Jul 30 09:06:02 2022 +0100
-# Node ID aa77bc8461ee15501a0298dafd53c97447aa30d0
-# Parent 0a06f497d58839e4100b3be46bbdcd14d8147d75
-configure: fix bashism
-
-configure scripts need to be runnable with a POSIX-compliant /bin/sh.
-
-On many (but not all!) systems, /bin/sh is provided by Bash, so errors
-like this aren't spotted. Notably Debian defaults to /bin/sh provided
-by dash which doesn't tolerate such bashisms as '=='.
-
-This retains compatibility with bash.
-
-Fixes configure warnings/errors like:
-```
-checking for gs... /usr/sbin/gs
-./configure: 31719: test: #: unexpected operator
-checking for Windows fonts directory (location of arial.ttf)... /usr/share/fonts/corefonts/
-```
-
---- a/configure.ac
-+++ b/configure.ac
-@@ -3148,7 +3148,7 @@ have_ralcgm='no' ; if test "$CGMDecodeD
- AM_CONDITIONAL([HasPSDelegate],[test "$have_gs" = 'yes'])
-
- # Tests for programs only used while in maintainer mode
--if test "$MAINT" == '' ; then
-+if test "$MAINT" = '' ; then
- # Test for optional rst2html.py utility and define automake conditional HasRST2HTML if found.
- AC_CHECK_PROGS([RST2HTML],[rst2html.py rst2html])
-