diff options
author | adam <adam@pkgsrc.org> | 2006-04-17 08:11:17 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2006-04-17 08:11:17 +0000 |
commit | 2fc4f5935477442452a319cbae812259d7580ae5 (patch) | |
tree | 221dbb49cdd98d1039637fea16cef8b70ecb7e42 /graphics/netpbm/Makefile | |
parent | 05096fa10a68bebad1164ea9cf39042c1ccd61e6 (diff) | |
download | pkgsrc-2fc4f5935477442452a319cbae812259d7580ae5.tar.gz |
Changes 10.33:
Add pamtosvg.
g3topbm: Add -width, -paper_size.
libnetpbm / most newer programs: Fix bug that produces
plain format output when it should be raw because
pnm_readpaminit() does not set 'plainformat' and most
programs just copy the input pam to the output pam.
pamflip: fix bug with left/right flip of PBM that has
width an even multiple of 8 plus something less than 8.
pnmquant: turn on autoflush when creating seekable file.
install: fix symbolic link pnmdepth -> pamdepth.
build: fix some importinc dependencies.
Diffstat (limited to 'graphics/netpbm/Makefile')
-rw-r--r-- | graphics/netpbm/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/graphics/netpbm/Makefile b/graphics/netpbm/Makefile index d95f461777d..bb69318fd33 100644 --- a/graphics/netpbm/Makefile +++ b/graphics/netpbm/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.137 2006/04/03 16:53:58 tron Exp $ +# $NetBSD: Makefile,v 1.138 2006/04/17 08:11:17 adam Exp $ -DISTNAME= netpbm-10.32 -PKGREVISION= 1 +DISTNAME= netpbm-10.33 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=netpbm/} EXTRACT_SUFX= .tgz @@ -74,12 +73,12 @@ post-install: ${FIND} * \! -type d -print | ${SORT} >${PLIST_SRC} && \ ${FIND} * -type d -print | \ while read DIR; do \ - ${TEST} -d "${PREFIX}/$${DIR}" || \ - ${ECHO} "@dirrm $${DIR}"; \ + ${TEST} -d "${PREFIX}/$${DIR}" || \ + ${ECHO} "@dirrm $${DIR}"; \ done >>${PLIST_SRC} && \ ${PAX} -rwpppm . ${PREFIX} ${RM} -fr ${STAGEDIR} ${FIND} ${PREFIX}/share/doc/netpbm -type f -print | \ - xargs ${CHMOD} ${NONBINMODE} + ${XARGS} ${CHMOD} ${NONBINMODE} .include "../../mk/bsd.pkg.mk" |