diff options
author | wiz <wiz@pkgsrc.org> | 2011-01-24 16:51:59 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2011-01-24 16:51:59 +0000 |
commit | 45fa9c6e7a0b94c8e8f3bb6afc92675f7de2bff3 (patch) | |
tree | 0dd84f22ff3f70e753ae0b4d3a69677c17e45b89 /graphics | |
parent | 4346ef84289a9fd8d0b732adca3d8cb36e1c09d2 (diff) | |
download | pkgsrc-45fa9c6e7a0b94c8e8f3bb6afc92675f7de2bff3.tar.gz |
Fix previous: Due to a png documentation bug, the arguments of
png_set_IHDR were swapped. Bug reported by drochner.
Bump PKGREVISION.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gimp/Makefile | 4 | ||||
-rw-r--r-- | graphics/gimp/distinfo | 4 | ||||
-rw-r--r-- | graphics/gimp/patches/patch-af | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/graphics/gimp/Makefile b/graphics/gimp/Makefile index 3cee1bd320a..a634300aa3b 100644 --- a/graphics/gimp/Makefile +++ b/graphics/gimp/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.202 2011/01/13 13:36:12 wiz Exp $ +# $NetBSD: Makefile,v 1.203 2011/01/24 16:51:59 wiz Exp $ DISTNAME= gimp-2.6.11 -PKGREVISION= 3 +PKGREVISION= 4 CATEGORIES= graphics MASTER_SITES= ftp://ftp.gimp.org/pub/gimp/v2.6/ \ ${MASTER_SITE_GNU:=gimp/v2.6/} \ diff --git a/graphics/gimp/distinfo b/graphics/gimp/distinfo index 7780686e774..3a0e91d6853 100644 --- a/graphics/gimp/distinfo +++ b/graphics/gimp/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.60 2011/01/24 12:35:32 wiz Exp $ +$NetBSD: distinfo,v 1.61 2011/01/24 16:51:59 wiz Exp $ SHA1 (gimp-2.6.11.tar.bz2) = 2f9d596e727bdbf304fa78257c1731d9faf3934c RMD160 (gimp-2.6.11.tar.bz2) = a116377499e58dc2bfe231ab3c057d0be94091ff @@ -8,4 +8,4 @@ SHA1 (patch-ab) = 80e7235178e53e873efa0b16098b74fa0b981f76 SHA1 (patch-ac) = 42f44b45640bdde305c1e52b95ee633360ebccb8 SHA1 (patch-ad) = 4e2ce2f7d8729fb760eac1bad89cfe09fef499b0 SHA1 (patch-ae) = 67aafb1b76925c239795c5dbda34ccb0f11dd6a8 -SHA1 (patch-af) = 00240483c647d90fabb8a43d0ef0d6d1ea2c8007 +SHA1 (patch-af) = a8379ea6835ac1a44a1a933000cb92336377cf99 diff --git a/graphics/gimp/patches/patch-af b/graphics/gimp/patches/patch-af index 5ae12dbb4d0..383877ded59 100644 --- a/graphics/gimp/patches/patch-af +++ b/graphics/gimp/patches/patch-af @@ -1,4 +1,4 @@ -$NetBSD: patch-af,v 1.6 2011/01/24 12:35:33 wiz Exp $ +$NetBSD: patch-af,v 1.7 2011/01/24 16:51:59 wiz Exp $ Fix build with png-1.5. https://bugzilla.gnome.org/show_bug.cgi?id=640409 @@ -310,7 +310,7 @@ https://bugzilla.gnome.org/show_bug.cgi?id=640409 /* otherwise the default is fine */ } -+ png_set_IHDR(pp, info, drawable->width, drawable->height, bit_depth, color_type, PNG_FILTER_TYPE_BASE, PNG_COMPRESSION_TYPE_BASE, pngvals.interlaced ? PNG_INTERLACE_ADAM7 : PNG_INTERLACE_NONE); ++ png_set_IHDR(pp, info, drawable->width, drawable->height, bit_depth, color_type, pngvals.interlaced ? PNG_INTERLACE_ADAM7 : PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE); + /* All this stuff is optional extras, if the user is aiming for smallest possible file size she can turn them all off */ |