diff options
author | adam <adam@pkgsrc.org> | 2013-11-05 17:27:10 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2013-11-05 17:27:10 +0000 |
commit | fddebb198b261a85def5df8b694c1f696d0d4a0e (patch) | |
tree | 6ee29c492eadb417ad871f8c9756b8546659002d /graphics | |
parent | 48529c48a89c01cdab69aae235c9292d71132859 (diff) | |
download | pkgsrc-fddebb198b261a85def5df8b694c1f696d0d4a0e.tar.gz |
Added patch-configure.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/ImageMagick/distinfo | 4 | ||||
-rw-r--r-- | graphics/ImageMagick/patches/patch-configure | 24 |
2 files changed, 26 insertions, 2 deletions
diff --git a/graphics/ImageMagick/distinfo b/graphics/ImageMagick/distinfo index 30ab1e0d32d..2c89e299b1b 100644 --- a/graphics/ImageMagick/distinfo +++ b/graphics/ImageMagick/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.121 2013/11/05 14:42:55 adam Exp $ +$NetBSD: distinfo,v 1.122 2013/11/05 17:27:10 adam Exp $ SHA1 (ImageMagick-6.8.7-4.tar.xz) = 88e936a1738967d078a9500f430e9017400a05e9 RMD160 (ImageMagick-6.8.7-4.tar.xz) = 77606d5d066196f1095d0d5ad23036e1307b89f7 Size (ImageMagick-6.8.7-4.tar.xz) = 7516724 bytes -SHA1 (patch-configure) = 246aef0157ad479688452c3970b271e6956fd7bb +SHA1 (patch-configure) = 87ae69ea06d9ed392627ec2067192e1a292106c4 diff --git a/graphics/ImageMagick/patches/patch-configure b/graphics/ImageMagick/patches/patch-configure new file mode 100644 index 00000000000..93fea78cd70 --- /dev/null +++ b/graphics/ImageMagick/patches/patch-configure @@ -0,0 +1,24 @@ +$NetBSD: patch-configure,v 1.1 2013/11/05 17:27:10 adam Exp $ + +Portability fix. + +--- configure.orig 2013-11-05 17:24:55.000000000 +0000 ++++ configure +@@ -34656,7 +34656,7 @@ $as_echo "no" >&6; } + fi + + +-if test "$MPEGDecodeDelegate" == "$MPEGDecodeDelegateDefault" ; then ++if test "$MPEGDecodeDelegate" = "$MPEGDecodeDelegateDefault" ; then + MPEGDecodeDelegateDefault='ffmpeg' + # Extract the first word of ""$MPEGDecodeDelegateDefault"", so it can be a program name with args. + set dummy "$MPEGDecodeDelegateDefault"; ac_word=$2 +@@ -34741,7 +34741,7 @@ $as_echo "no" >&6; } + fi + + +-if test "$MPEGEncodeDelegate" == "$MPEGEncodeDelegateDefault" ; then ++if test "$MPEGEncodeDelegate" = "$MPEGEncodeDelegateDefault" ; then + MPEGEncodeDelegateDefault='ffmpeg' + # Extract the first word of ""$MPEGEncodeDelegateDefault"", so it can be a program name with args. + set dummy "$MPEGEncodeDelegateDefault"; ac_word=$2 |