summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
Diffstat (limited to 'graphics')
-rw-r--r--graphics/png/Makefile7
-rw-r--r--graphics/png/distinfo9
-rw-r--r--graphics/png/patches/patch-ab35
3 files changed, 6 insertions, 45 deletions
diff --git a/graphics/png/Makefile b/graphics/png/Makefile
index d51454fb116..e2bc68e95cd 100644
--- a/graphics/png/Makefile
+++ b/graphics/png/Makefile
@@ -1,16 +1,13 @@
-# $NetBSD: Makefile,v 1.88 2007/01/03 20:38:46 rillig Exp $
+# $NetBSD: Makefile,v 1.89 2007/01/06 21:48:50 wiz Exp $
-DISTNAME= libpng-1.2.14
+DISTNAME= libpng-1.2.15
PKGNAME= ${DISTNAME:S/lib//}
-PKGREVISION= 1
-# temporary, distfile was changed after release
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libpng/} \
http://www.libpng.org/pub/png/src/ \
ftp://swrinde.nde.swri.edu/pub/png/src/ \
ftp://ftp.simplesystems.org/pub/libpng/src/ \
ftp://ftp.fu-berlin.de/unix/graphics/png/src/
-DIST_SUBDIR= libpng-1.2.14-20061130
EXTRACT_SUFX= .tar.bz2
MAINTAINER= fredb@NetBSD.org
diff --git a/graphics/png/distinfo b/graphics/png/distinfo
index 9517e974bcd..46a9376ce17 100644
--- a/graphics/png/distinfo
+++ b/graphics/png/distinfo
@@ -1,9 +1,8 @@
-$NetBSD: distinfo,v 1.35 2007/01/03 16:23:10 tv Exp $
+$NetBSD: distinfo,v 1.36 2007/01/06 21:48:50 wiz Exp $
-SHA1 (libpng-1.2.14-20061130/libpng-1.2.14.tar.bz2) = 3cf3efcada7896982b165ea34ed6b399ef7fb4af
-RMD160 (libpng-1.2.14-20061130/libpng-1.2.14.tar.bz2) = 37c91bc411a8c4bc467bb8b229a4e39bcca4bd8a
-Size (libpng-1.2.14-20061130/libpng-1.2.14.tar.bz2) = 620379 bytes
+SHA1 (libpng-1.2.15.tar.bz2) = a561350b588c7997b107a3417b56a725b5dc5af7
+RMD160 (libpng-1.2.15.tar.bz2) = 3fb0dcb7764c0fcb7bf349a617f3463869177aab
+Size (libpng-1.2.15.tar.bz2) = 624008 bytes
SHA1 (patch-aa) = 4b6437906e6f2f644c731a293859e64f69300bb0
-SHA1 (patch-ab) = 979175c65587686b339a5556e8bcae3be95a07ca
SHA1 (patch-ac) = 87850d6ac555f1d8863a96d287a1ccccfa89230b
SHA1 (patch-ae) = b9bf9de3caa32ac78a17685cdd5df5b80d1ccbbf
diff --git a/graphics/png/patches/patch-ab b/graphics/png/patches/patch-ab
deleted file mode 100644
index 3f63d84734f..00000000000
--- a/graphics/png/patches/patch-ab
+++ /dev/null
@@ -1,35 +0,0 @@
-$NetBSD: patch-ab,v 1.10 2006/04/16 19:39:46 wiz Exp $
-
---- pngtest.c.orig 2006-04-14 11:22:24.000000000 +0000
-+++ pngtest.c
-@@ -576,7 +576,7 @@ png_debug_free(png_structp png_ptr, png_
- }
- if (pinfo->next == NULL)
- {
-- fprintf(STDERR, "Pointer %x not found\n", (unsigned int)ptr);
-+ fprintf(STDERR, "Pointer %p not found\n", ptr);
- break;
- }
- ppinfo = &pinfo->next;
-@@ -1433,8 +1433,8 @@ main(int argc, char *argv[])
- current_allocation);
- while (pinfo != NULL)
- {
-- fprintf(STDERR, " %lu bytes at %x\n", pinfo->size,
-- (unsigned int) pinfo->pointer);
-+ fprintf(STDERR, " %lu bytes at %p\n", pinfo->size,
-+ pinfo->pointer);
- pinfo = pinfo->next;
- }
- }
-@@ -1508,8 +1508,8 @@ main(int argc, char *argv[])
- current_allocation);
- while (pinfo != NULL)
- {
-- fprintf(STDERR," %lu bytes at %x\n",
-- pinfo->size, (unsigned int)pinfo->pointer);
-+ fprintf(STDERR," %lu bytes at %p\n",
-+ pinfo->size, pinfo->pointer);
- pinfo = pinfo->next;
- }
- }