pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/graphics/optipng Changes 0.5.3:
details: https://anonhg.NetBSD.org/pkgsrc/rev/022d9c361031
branches: trunk
changeset: 517140:022d9c361031
user: adam <adam%pkgsrc.org@localhost>
date: Sat Aug 05 12:23:07 2006 +0000
description:
Changes 0.5.3:
* Upgraded libpng to version 1.2.12-optipng [private]
* Implemented basic support for TIFF (grayscale, RGB and RGBA, uncompressed).
* Avoided the redundant trial when the search space is singular
(e.g. when running "optipng -o1 example.tif").
* Prevented accidental file corruption when using option "-log".
* Fixed (again) a small typo in the online help.
diffstat:
graphics/optipng/Makefile | 4 ++--
graphics/optipng/PLIST | 3 ++-
graphics/optipng/distinfo | 10 +++++-----
graphics/optipng/patches/patch-aa | 12 ++++++++----
4 files changed, 17 insertions(+), 12 deletions(-)
diffs (68 lines):
diff -r 5688e1d3cc36 -r 022d9c361031 graphics/optipng/Makefile
--- a/graphics/optipng/Makefile Sat Aug 05 12:20:34 2006 +0000
+++ b/graphics/optipng/Makefile Sat Aug 05 12:23:07 2006 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.10 2006/05/08 22:31:12 adam Exp $
+# $NetBSD: Makefile,v 1.11 2006/08/05 12:23:07 adam Exp $
-DISTNAME= optipng-0.5.2
+DISTNAME= optipng-0.5.3
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=optipng/}
diff -r 5688e1d3cc36 -r 022d9c361031 graphics/optipng/PLIST
--- a/graphics/optipng/PLIST Sat Aug 05 12:20:34 2006 +0000
+++ b/graphics/optipng/PLIST Sat Aug 05 12:23:07 2006 +0000
@@ -1,2 +1,3 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2005/07/13 14:52:39 adam Exp $
+@comment $NetBSD: PLIST,v 1.2 2006/08/05 12:23:07 adam Exp $
bin/optipng
+man/man1/optipng.1
diff -r 5688e1d3cc36 -r 022d9c361031 graphics/optipng/distinfo
--- a/graphics/optipng/distinfo Sat Aug 05 12:20:34 2006 +0000
+++ b/graphics/optipng/distinfo Sat Aug 05 12:23:07 2006 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.6 2006/05/08 22:31:12 adam Exp $
+$NetBSD: distinfo,v 1.7 2006/08/05 12:23:07 adam Exp $
-SHA1 (optipng-0.5.2.tar.gz) = e0b579f3843b747b2cb13bac136dc6b6257a2577
-RMD160 (optipng-0.5.2.tar.gz) = 580487aead95fcc27681b3e62e39ebc5e9a84c13
-Size (optipng-0.5.2.tar.gz) = 1082229 bytes
-SHA1 (patch-aa) = 888dc7606f5b094be7d0ea8599d1a8b08fee613b
+SHA1 (optipng-0.5.3.tar.gz) = a8ee749acc0d791a29f7fa659305a48dd83cfd6f
+RMD160 (optipng-0.5.3.tar.gz) = 66a58f88f485856b8fcd0a47e9d286bb74e682d0
+Size (optipng-0.5.3.tar.gz) = 1090872 bytes
+SHA1 (patch-aa) = c6c30b71122fe7c5c978b280ef48d4c0b4bbf435
SHA1 (patch-ab) = 2bc61b45e6f71fbb3c4fa5101cbd7b4bd2a1e760
SHA1 (patch-ac) = fb4eb567b5a24b2d26bf357061be80c57b4d4a3c
diff -r 5688e1d3cc36 -r 022d9c361031 graphics/optipng/patches/patch-aa
--- a/graphics/optipng/patches/patch-aa Sat Aug 05 12:20:34 2006 +0000
+++ b/graphics/optipng/patches/patch-aa Sat Aug 05 12:23:07 2006 +0000
@@ -1,12 +1,12 @@
-$NetBSD: patch-aa,v 1.6 2006/05/08 22:31:12 adam Exp $
+$NetBSD: patch-aa,v 1.7 2006/08/05 12:23:07 adam Exp $
---- /dev/null 2006-05-09 00:31:28.000000000 +0200
+--- Makefile.orig 2006-08-05 13:54:57.000000000 +0200
+++ Makefile
-@@ -0,0 +1,30 @@
+@@ -0,0 +1,34 @@
+OBJS= optipng.o opngio.o opngreduc.o cbitset.o osys.o strutil.o \
+ pngxread.o pngxrbmp.o pngxrgif.o pngxrjpg.o pngxrpnm.o \
+ pngxrtif.o gifread.o pnmerror.o pnmread.o pnmwrite.o \
-+ png_write_sig.o
++ png_write_sig.o minitiff.o tiffread.o tiffwrite.o
+
+CPPFLAGS= `libpng-config --cflags` -Ilib/pngxtern -Isrc
+
@@ -30,6 +30,10 @@
+pnmerror.o: lib/pngxtern/pnm/pnmerror.c lib/pngxtern/pnm/pnmio.h
+pnmread.o: lib/pngxtern/pnm/pnmread.c lib/pngxtern/pnm/pnmio.h
+pnmwrite.o: lib/pngxtern/pnm/pnmwrite.c lib/pngxtern/pnm/pnmio.h
++minitiff.o: lib/pngxtern/minitiff/minitiff.c lib/pngxtern/minitiff/minitiff.h
++tiffread.o: lib/pngxtern/minitiff/tiffread.c lib/pngxtern/minitiff/tiffdef.h
++tiffwrite.o: lib/pngxtern/minitiff/tiffwrite.c lib/pngxtern/minitiff/tiffdef.h
+
+install:
+ ${BSD_INSTALL_PROGRAM} optipng ${PREFIX}/bin
++ ${BSD_INSTALL_MAN} man/optipng.1 ${PREFIX}/${PKGMANDIR}/man1
Home |
Main Index |
Thread Index |
Old Index