diff options
author | drochner <drochner> | 2006-11-28 21:58:17 +0000 |
---|---|---|
committer | drochner <drochner> | 2006-11-28 21:58:17 +0000 |
commit | ce5648ebcbdba8970bf28a1f8f641b66e73cb794 (patch) | |
tree | 8c5429607d5221c727235a616377112dd6cc42f8 /graphics | |
parent | f93ba9b12bfa5bba23d7daea364a8519a2fb8dac (diff) | |
download | pkgsrc-ce5648ebcbdba8970bf28a1f8f641b66e73cb794.tar.gz |
update to 1.2.14
changes:
-Relocated three misplaced tests for NULL png_ptr
-build fixes
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/png/Makefile | 4 | ||||
-rw-r--r-- | graphics/png/distinfo | 10 | ||||
-rw-r--r-- | graphics/png/patches/patch-aa | 10 |
3 files changed, 11 insertions, 13 deletions
diff --git a/graphics/png/Makefile b/graphics/png/Makefile index 72614b8dfa0..8324a4bacec 100644 --- a/graphics/png/Makefile +++ b/graphics/png/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.84 2006/11/18 14:26:19 taca Exp $ +# $NetBSD: Makefile,v 1.85 2006/11/28 21:58:17 drochner Exp $ -DISTNAME= libpng-1.2.13 +DISTNAME= libpng-1.2.14 PKGNAME= ${DISTNAME:S/lib//} CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libpng/} \ diff --git a/graphics/png/distinfo b/graphics/png/distinfo index 5d85231e9c7..1c24ba9bb61 100644 --- a/graphics/png/distinfo +++ b/graphics/png/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.31 2006/11/18 14:26:19 taca Exp $ +$NetBSD: distinfo,v 1.32 2006/11/28 21:58:17 drochner Exp $ -SHA1 (libpng-1.2.13.tar.bz2) = e0c7d80b1300ad632b88982ee832f21ac35551ca -RMD160 (libpng-1.2.13.tar.bz2) = 3edb65770d365c0512fd22aed90ecc11e9bb5512 -Size (libpng-1.2.13.tar.bz2) = 621104 bytes -SHA1 (patch-aa) = 3191c0781894d16be1c914f378f5be221dbc4960 +SHA1 (libpng-1.2.14.tar.bz2) = 2b0438b4bff76b3f212893841b241967ee92be25 +RMD160 (libpng-1.2.14.tar.bz2) = cd0faa64b6ba5fe9c4e9c59d966cedea989214b7 +Size (libpng-1.2.14.tar.bz2) = 620364 bytes +SHA1 (patch-aa) = 4b6437906e6f2f644c731a293859e64f69300bb0 SHA1 (patch-ab) = 979175c65587686b339a5556e8bcae3be95a07ca SHA1 (patch-ae) = b9bf9de3caa32ac78a17685cdd5df5b80d1ccbbf diff --git a/graphics/png/patches/patch-aa b/graphics/png/patches/patch-aa index 148466187fb..d29f4235803 100644 --- a/graphics/png/patches/patch-aa +++ b/graphics/png/patches/patch-aa @@ -1,14 +1,12 @@ -$NetBSD: patch-aa,v 1.25 2006/05/17 21:48:57 wiz Exp $ +$NetBSD: patch-aa,v 1.26 2006/11/28 21:58:17 drochner Exp $ -Install old library .la file so that PLIST is correct. - ---- Makefile.in.orig 2006-04-23 18:46:00.000000000 +0000 +--- Makefile.in.orig 2006-11-27 17:11:15.000000000 +0100 +++ Makefile.in -@@ -1264,6 +1264,7 @@ install-exec-hook: +@@ -1271,6 +1271,7 @@ install-exec-hook: cd $(DESTDIR)$(bindir); $(LN_S) $(PNGLIB_BASENAME)-config libpng-config @set -x;\ cd $(DESTDIR)$(libdir);\ + mv libpng.la libpngcompat.la;\ for ext in a la so; do\ rm -f libpng.$$ext;\ - $(LN_S) $(PNGLIB_BASENAME).$$ext libpng.$$ext;\ + if test -f $(PNGLIB_BASENAME).$$ext; then\ |