diff options
author | adam <adam> | 2013-11-05 17:27:10 +0000 |
---|---|---|
committer | adam <adam> | 2013-11-05 17:27:10 +0000 |
commit | 0dcacf73655595bb6be7894b7c50fca4b51ae514 (patch) | |
tree | 6ee29c492eadb417ad871f8c9756b8546659002d /graphics | |
parent | d48af5b0a6d61bb49c36a53cbca651f98c5b4475 (diff) | |
download | pkgsrc-0dcacf73655595bb6be7894b7c50fca4b51ae514.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 |