summaryrefslogtreecommitdiff
path: root/graphics/ImageMagick
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2002-03-15 06:21:46 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2002-03-15 06:21:46 +0000
commitbe2c76123ebe028d3a26dabd7c20e280b1e2f13e (patch)
tree333c11c1f33844bf60bfcc7d6431518ec99eb517 /graphics/ImageMagick
parentRemove unnecessary ORBit dependency that installs an experimental UI plugin (diff)
Workaround hack for perl Ping() method wrong image dimension bug.
According to author, it is fixed in different way in not yet released 5.4.4
Notes
Notes: svn path=/head/; revision=56125
Diffstat (limited to 'graphics/ImageMagick')
-rw-r--r--graphics/ImageMagick/Makefile2
-rw-r--r--graphics/ImageMagick/files/patch-aa16
2 files changed, 17 insertions, 1 deletions
diff --git a/graphics/ImageMagick/Makefile b/graphics/ImageMagick/Makefile
index 38347e3e5395..1ec13a2e7872 100644
--- a/graphics/ImageMagick/Makefile
+++ b/graphics/ImageMagick/Makefile
@@ -7,7 +7,7 @@
PORTNAME= ImageMagick
PORTVERSION= 5.4.3.11
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= graphics perl5
MASTER_SITES= http://imagemagick.sourceforge.net/http/ \
ftp://ftp.yggdrasil.com/mirrors/site/ftp.simplesystems.org/pub/%SUBDIR%/ \
diff --git a/graphics/ImageMagick/files/patch-aa b/graphics/ImageMagick/files/patch-aa
new file mode 100644
index 000000000000..8a2f1ce28355
--- /dev/null
+++ b/graphics/ImageMagick/files/patch-aa
@@ -0,0 +1,16 @@
+--- PerlMagick/Magick.xs.bak Fri Mar 1 00:35:16 2002
++++ PerlMagick/Magick.xs Fri Mar 15 07:42:00 2002
+@@ -6249,9 +6249,11 @@
+ EXTEND(sp,4*count);
+ for (p=image ; p != (Image *) NULL; p=p->next)
+ {
+- FormatString(message,"%u",p->columns);
++ FormatString(message,"%u",
++ p->magick_columns ? p->magick_columns : p->columns);
+ PUSHs(sv_2mortal(newSVpv(message,0)));
+- FormatString(message,"%u",p->rows);
++ FormatString(message,"%u",
++ p->magick_rows ? p->magick_rows : p->rows);
+ PUSHs(sv_2mortal(newSVpv(message,0)));
+ FormatString(message,"%lu",(unsigned long) GetBlobSize(p));
+ PUSHs(sv_2mortal(newSVpv(message,0)));