Mon Jan 24 16:43:26 2011 UTC ()
Add upstream bug report URL.


(wiz)
diff -r1.2 -r1.3 pkgsrc/games/pingus/distinfo
diff -r1.1 -r1.2 pkgsrc/games/pingus/patches/patch-ac

cvs diff -r1.2 -r1.3 pkgsrc/games/pingus/distinfo (expand / switch to unified diff)

--- pkgsrc/games/pingus/distinfo 2011/01/20 23:41:02 1.2
+++ pkgsrc/games/pingus/distinfo 2011/01/24 16:43:26 1.3
@@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@
1$NetBSD: distinfo,v 1.2 2011/01/20 23:41:02 wiz Exp $ 1$NetBSD: distinfo,v 1.3 2011/01/24 16:43:26 wiz Exp $
2 2
3SHA1 (pingus-0.7.3.tar.bz2) = ca7fe5cea65fb3392d1e81056a879831925502f2 3SHA1 (pingus-0.7.3.tar.bz2) = ca7fe5cea65fb3392d1e81056a879831925502f2
4RMD160 (pingus-0.7.3.tar.bz2) = 664d259a98a172d10480be9aa4ec87a424ecd6f1 4RMD160 (pingus-0.7.3.tar.bz2) = 664d259a98a172d10480be9aa4ec87a424ecd6f1
5Size (pingus-0.7.3.tar.bz2) = 11127278 bytes 5Size (pingus-0.7.3.tar.bz2) = 11127278 bytes
6SHA1 (patch-aa) = 7df701ca791e01d7c6fbff558bca906f56fbb643 6SHA1 (patch-aa) = 7df701ca791e01d7c6fbff558bca906f56fbb643
7SHA1 (patch-ab) = 2f897472e0c006e6fa325c17eda34b05d0ba6a01 7SHA1 (patch-ab) = 2f897472e0c006e6fa325c17eda34b05d0ba6a01
8SHA1 (patch-ac) = 34f11e9ba2b259cee4d90f408c214bdbb34330a2 8SHA1 (patch-ac) = f0c357e4b5d5b71eacac243c15792b3a78a146ec

cvs diff -r1.1 -r1.2 pkgsrc/games/pingus/patches/Attic/patch-ac (expand / switch to unified diff)

--- pkgsrc/games/pingus/patches/Attic/patch-ac 2011/01/20 23:41:02 1.1
+++ pkgsrc/games/pingus/patches/Attic/patch-ac 2011/01/24 16:43:26 1.2
@@ -1,15 +1,16 @@ @@ -1,15 +1,16 @@
1$NetBSD: patch-ac,v 1.1 2011/01/20 23:41:02 wiz Exp $ 1$NetBSD: patch-ac,v 1.2 2011/01/24 16:43:26 wiz Exp $
2 2
3Fix build with png-1.5. 3Fix build with png-1.5.
 4http://savannah.nongnu.org/bugs/?32236
4 5
5--- src/screenshot.cpp.orig 2007-09-30 16:07:08.000000000 +0000 6--- src/screenshot.cpp.orig 2007-09-30 16:07:08.000000000 +0000
6+++ src/screenshot.cpp 7+++ src/screenshot.cpp
7@@ -159,7 +159,7 @@ Screenshot::save_png(const std::string&  8@@ -159,7 +159,7 @@ Screenshot::save_png(const std::string&
8 return; 9 return;
9 } 10 }
10  11
11- if (setjmp(png_ptr->jmpbuf)) 12- if (setjmp(png_ptr->jmpbuf))
12+ if (setjmp(png_jmpbuf(png_ptr))) 13+ if (setjmp(png_jmpbuf(png_ptr)))
13 { 14 {
14 // If we get here, we had a problem reading the file 15 // If we get here, we had a problem reading the file
15 fclose(fp); 16 fclose(fp);