diff options
author | adam <adam@pkgsrc.org> | 2012-03-07 09:11:43 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2012-03-07 09:11:43 +0000 |
commit | 7dedef2075e50532c8795147ed0c6e45fb2f6ceb (patch) | |
tree | ad2f2d6ebafef9e03240d46029e0510b6e58d566 /graphics/optipng/Makefile | |
parent | 174d98ddbcf4d6f887273df03a961c45df21dc45 (diff) | |
download | pkgsrc-7dedef2075e50532c8795147ed0c6e45fb2f6ceb.tar.gz |
Changes 0.7:
* Upgraded libpng to version 1.4.9.
* Upgraded zlib to version 1.2.6-optipng.
* Resolved a rarely-occurring out-of-bounds memory access error in
Z_RLE, by upgrading zlib.
* Added the popularly-requested option -strip.
The only suboption currently supported is "-strip all".
* Added the option -clobber.
* Added the option -backup, as an alias of -keep.
* Added the option -silent, as an alias of -quiet.
* Deprecated the option -log.
* Changed the activity display output from STDOUT to STDERR.
* Allowed the option -preserve to save high-resolution timestamps
on Unix, if the POSIX-1.2008 API is available. This feature was
previously available on Windows only.
* Fixed a minor precision error in the display of file size percents.
* Fixed a memory leak that occurred when reading broken GIF images.
* Fixed various build issues.
* Resolved all remaining compatibility issues with libpng-1.5.
* Added build support for clang.
* Reorganized the source directory structure.
Diffstat (limited to 'graphics/optipng/Makefile')
-rw-r--r-- | graphics/optipng/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/optipng/Makefile b/graphics/optipng/Makefile index 24e912370b4..cd8fea8794c 100644 --- a/graphics/optipng/Makefile +++ b/graphics/optipng/Makefile @@ -1,20 +1,20 @@ -# $NetBSD: Makefile,v 1.23 2011/01/28 07:28:16 adam Exp $ +# $NetBSD: Makefile,v 1.24 2012/03/07 09:11:43 adam Exp $ -DISTNAME= optipng-0.6.5 +DISTNAME= optipng-0.7 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=optipng/} MAINTAINER= adam@NetBSD.org HOMEPAGE= http://optipng.sourceforge.net/ COMMENT= Advanced PNG Optimizer -LICENSE= png-license +LICENSE= zlib PKG_DESTDIR_SUPPORT= user-destdir HAS_CONFIGURE= yes CONFIGURE_ARGS+= -prefix=${PREFIX} CONFIGURE_ARGS+= -with-system-zlib -#CONFIGURE_ARGS+= -with-system-libpng +CONFIGURE_ARGS+= -with-system-libpng BUILDLINK_API_DEPENDS.zlib+= zlib>=1.2.2 BUILDLINK_API_DEPENDS.png+= png>=1.2.9nb2 @@ -22,5 +22,5 @@ BUILDLINK_API_DEPENDS.png+= png>=1.2.9nb2 INSTALLATION_DIRS+= bin ${PKGMANDIR}/man1 .include "../../devel/zlib/buildlink3.mk" -#.include "../../graphics/png/buildlink3.mk" +.include "../../graphics/png/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |