summaryrefslogtreecommitdiff
path: root/print
diff options
context:
space:
mode:
authorgrant <grant@pkgsrc.org>2003-04-10 01:28:03 +0000
committergrant <grant@pkgsrc.org>2003-04-10 01:28:03 +0000
commitafdebcf9a40e045d6fa993260a803c2cb44c4693 (patch)
treec67db081e20351feb52d2ca5fbde4b2c17aa2887 /print
parent7cbde19ad7ca49e9571c24ddc71983707c8bc89a (diff)
downloadpkgsrc-afdebcf9a40e045d6fa993260a803c2cb44c4693.tar.gz
make ${PAX} usage consistent:
- group 'zrw' and 'p' args, -s last - use the && operator consistently - strip unneeded parens - some whitespace cleanup
Diffstat (limited to 'print')
-rw-r--r--print/ja-vflib-lib/Makefile6
-rw-r--r--print/py-reportlab/Makefile4
2 files changed, 5 insertions, 5 deletions
diff --git a/print/ja-vflib-lib/Makefile b/print/ja-vflib-lib/Makefile
index ca3aba3343c..7f59962170f 100644
--- a/print/ja-vflib-lib/Makefile
+++ b/print/ja-vflib-lib/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2002/09/11 08:54:46 jlam Exp $
+# $NetBSD: Makefile,v 1.4 2003/04/10 01:28:23 grant Exp $
.include "Makefile.common"
@@ -22,9 +22,9 @@ post-install:
${MV} ${PREFIX}/share/VFlib/${VFLIB_VERSION}/VF.h ${PREFIX}/include
${INSTALL_DATA_DIR} ${PREFIX}/share/VFlib/${VFLIB_VERSION}
- cd ${WRKSRC}; ${INSTALL_DATA} COPYING COPYING.LIB README.txt.JP_EUC \
+ cd ${WRKSRC} && ${INSTALL_DATA} COPYING COPYING.LIB README.txt.JP_EUC \
${PREFIX}/share/VFlib/${VFLIB_VERSION}
- cd ${WRKSRC}; ${PAX} -rw jTeX ${PREFIX}/share/VFlib/${VFLIB_VERSION}
+ cd ${WRKSRC} && ${PAX} -rw jTeX ${PREFIX}/share/VFlib/${VFLIB_VERSION}
${CHMOD} -R a-w ${PREFIX}/share/VFlib/${VFLIB_VERSION}
.include "../../mk/bsd.pkg.mk"
diff --git a/print/py-reportlab/Makefile b/print/py-reportlab/Makefile
index 2b63aef642a..7849846381b 100644
--- a/print/py-reportlab/Makefile
+++ b/print/py-reportlab/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2003/03/29 12:42:17 jmmv Exp $
+# $NetBSD: Makefile,v 1.10 2003/04/10 01:28:23 grant Exp $
#
DISTNAME= ReportLab_1_16
@@ -17,7 +17,7 @@ PYDISTUTILSPKG= yes
USE_BUILDLINK2= yes
post-install:
- (cd ${WRKDIR}; ${PAX} -r -w -v -p p reportlab ${PREFIX}/${PYSITELIB})
+ cd ${WRKDIR} && ${PAX} -rw -pp reportlab ${PREFIX}/${PYSITELIB}
${RM} -rf ${PREFIX}/${PYSITELIB}/reportlab/lib/build
.include "../../lang/python/extension.mk"