diff options
author | Patrick McLean <chutzpah@gentoo.org> | 2006-06-16 13:50:37 +0000 |
---|---|---|
committer | Patrick McLean <chutzpah@gentoo.org> | 2006-06-16 13:50:37 +0000 |
commit | 13774e21090212207782703bcfd04a79210f6b13 (patch) | |
tree | 6a2cf04c99790693d98bc7304a8e43c6e1ee6177 /media-gfx/gimp/files | |
parent | Version bumped. Contains large file-moves. (diff) | |
download | gentoo-2-13774e21090212207782703bcfd04a79210f6b13.tar.gz gentoo-2-13774e21090212207782703bcfd04a79210f6b13.tar.bz2 gentoo-2-13774e21090212207782703bcfd04a79210f6b13.zip |
Revision bump, added patch to fix compilation with libpng >=1.2.10 (bug #136661). Thanks to "michel <michel7@mail.ru>" for the patch.
(Portage version: 2.1_rc4-r2)
Diffstat (limited to 'media-gfx/gimp/files')
-rw-r--r-- | media-gfx/gimp/files/digest-gimp-2.2.11-r1 | 6 | ||||
-rw-r--r-- | media-gfx/gimp/files/gimp-2.2.11-libpng-1.2.10.patch | 20 |
2 files changed, 26 insertions, 0 deletions
diff --git a/media-gfx/gimp/files/digest-gimp-2.2.11-r1 b/media-gfx/gimp/files/digest-gimp-2.2.11-r1 new file mode 100644 index 000000000000..04c1c784b259 --- /dev/null +++ b/media-gfx/gimp/files/digest-gimp-2.2.11-r1 @@ -0,0 +1,6 @@ +MD5 0403e9b4e0415c99cd27b137b9839212 gimp-2.2.11.tar.bz2 12854751 +RMD160 0304a859d53e4e6b7520b5e8634e64e07911eeba gimp-2.2.11.tar.bz2 12854751 +SHA256 169441ac8dd59d0dda52e4a93622e9824e74bf79b56aab6908c74ffd0418a2d4 gimp-2.2.11.tar.bz2 12854751 +MD5 22a1e10c314c5547fe8721c4f6f0b30a gimp-help-2-0.10.tar.gz 41802089 +RMD160 8bf675b1973077f810382d90f36e8c4057e22aea gimp-help-2-0.10.tar.gz 41802089 +SHA256 cd1cd381435823809264e10ede6d597ec46d443c5bcd7b803da4190ba505454f gimp-help-2-0.10.tar.gz 41802089 diff --git a/media-gfx/gimp/files/gimp-2.2.11-libpng-1.2.10.patch b/media-gfx/gimp/files/gimp-2.2.11-libpng-1.2.10.patch new file mode 100644 index 000000000000..92fddcf1b8fe --- /dev/null +++ b/media-gfx/gimp/files/gimp-2.2.11-libpng-1.2.10.patch @@ -0,0 +1,20 @@ +--- plug-ins/common/png.c.orig 2006-06-15 19:45:07.000000000 +0200 ++++ plug-ins/common/png.c 2006-06-15 19:45:51.000000000 +0200 +@@ -1012,7 +1012,7 @@ + * Done with the file... + */ + +- png_read_destroy (pp, info, NULL); ++ png_destroy_read_struct(&pp, &info, NULL); + + g_free (pixel); + g_free (pixels); +@@ -1441,7 +1441,7 @@ + }; + + png_write_end (pp, info); +- png_write_destroy (pp); ++ png_destroy_write_struct(&pp, &info); + + g_free (pixel); + g_free (pixels); |