diff options
author | adam <adam@pkgsrc.org> | 2017-04-10 08:59:34 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2017-04-10 08:59:34 +0000 |
commit | 3d473ea352888e92a265936364e0e6bb181a2037 (patch) | |
tree | e277067b9307dc570e963b998cf8fb173ad3d4c2 /graphics | |
parent | 377cc4c077067e65341d61b44c6c7e74c89e495f (diff) | |
download | pkgsrc-3d473ea352888e92a265936364e0e6bb181a2037.tar.gz |
Version 1.8.11 (built with libpng-1.6.28 and zlib-1.2.11)
Use png_set_option(PNG_IGNORE_ADLER32) to control ADLER32 handling.
Changed LD=gcc to LD=$(CC) in Makefile and Makefile-nolib
PkgSrc:
Removed patch-aa as build and installation are done from the main Makefile.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/pngcrush/Makefile | 4 | ||||
-rw-r--r-- | graphics/pngcrush/distinfo | 11 | ||||
-rw-r--r-- | graphics/pngcrush/patches/patch-aa | 31 |
3 files changed, 7 insertions, 39 deletions
diff --git a/graphics/pngcrush/Makefile b/graphics/pngcrush/Makefile index 5aace3c54d1..60c2fe7414d 100644 --- a/graphics/pngcrush/Makefile +++ b/graphics/pngcrush/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.87 2016/12/05 11:07:58 adam Exp $ +# $NetBSD: Makefile,v 1.88 2017/04/10 08:59:34 adam Exp $ -DISTNAME= pngcrush-1.8.10-nolib +DISTNAME= pngcrush-1.8.11-nolib PKGNAME= ${DISTNAME:C/-nolib//} CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pmt/} diff --git a/graphics/pngcrush/distinfo b/graphics/pngcrush/distinfo index f655c563ffd..f14104c50e7 100644 --- a/graphics/pngcrush/distinfo +++ b/graphics/pngcrush/distinfo @@ -1,7 +1,6 @@ -$NetBSD: distinfo,v 1.67 2016/12/05 11:07:58 adam Exp $ +$NetBSD: distinfo,v 1.68 2017/04/10 08:59:34 adam Exp $ -SHA1 (pngcrush-1.8.10-nolib.tar.xz) = 7ac8ffc9bdc9aa6151403def67c57799256f670a -RMD160 (pngcrush-1.8.10-nolib.tar.xz) = 3a84f83e8fb14616f460c6b39062e2909a04ee7c -SHA512 (pngcrush-1.8.10-nolib.tar.xz) = 34d06b13ebbea77bb8f0e7d69ad8ddde5e36c8970adadc074bdf3715f5fe275e475680ea3e1b89349844b2aaeddcb00b35683c8dfc4ce2d78b59c20c626eca69 -Size (pngcrush-1.8.10-nolib.tar.xz) = 65196 bytes -SHA1 (patch-aa) = 5726060ffed7c1d0763ce7322acce31528d87b30 +SHA1 (pngcrush-1.8.11-nolib.tar.xz) = 942528b6ab062da26afcc4ddf8e881e5e6bdfe91 +RMD160 (pngcrush-1.8.11-nolib.tar.xz) = 76ff34c9015b1c127ee82e4be7728defca5deb1d +SHA512 (pngcrush-1.8.11-nolib.tar.xz) = 1b6d1c5b934d3d349031da1e49f1b3206cb0540a3d3a36219a800f052cd30da305b80902f7bdccfcc1487babb826a925048d30f9fbae598ca8ca18d60b3c49e1 +Size (pngcrush-1.8.11-nolib.tar.xz) = 65272 bytes diff --git a/graphics/pngcrush/patches/patch-aa b/graphics/pngcrush/patches/patch-aa deleted file mode 100644 index bfdee6dc1cd..00000000000 --- a/graphics/pngcrush/patches/patch-aa +++ /dev/null @@ -1,31 +0,0 @@ -$NetBSD: patch-aa,v 1.13 2016/10/08 06:16:24 adam Exp $ - -Don't override CC, LD, CFLAGS and LDFLAGS. - ---- Makefile.orig 2016-10-03 05:16:21.000000000 +0000 -+++ Makefile -@@ -17,15 +17,11 @@ PNGLIB = /usr/local/lib - ZINC = /usr/local/include - ZLIB = /usr/local/lib - --CC = gcc --LD = gcc - RM = rm -f - - CPPFLAGS = -I $(PNGINC) - --CFLAGS = -g -O3 -fomit-frame-pointer -Wall - # [note that -Wall is a gcc-specific compilation flag ("all warnings on")] --LDFLAGS = - O = .o - E = - -@@ -54,7 +50,7 @@ pngcrush$(O): pngcrush.c cexcept.h - mv png.h_embedded png.h - - $(PNGCRUSH)$(E): $(OBJS) -- $(LD) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) -+ $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) - - # maintenance --------------------------------------------------------------- - |