summaryrefslogtreecommitdiff
path: root/www/py-zpublisher
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 /www/py-zpublisher
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 'www/py-zpublisher')
-rw-r--r--www/py-zpublisher/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/www/py-zpublisher/Makefile b/www/py-zpublisher/Makefile
index 93d2e5e4468..bad53bf35ed 100644
--- a/www/py-zpublisher/Makefile
+++ b/www/py-zpublisher/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2003/03/29 12:42:53 jmmv Exp $
+# $NetBSD: Makefile,v 1.7 2003/04/10 01:28:30 grant Exp $
#
DISTNAME= Zope-2.2.2-src
@@ -18,18 +18,18 @@ PLIST_SRC= ${WRKDIR}/.PLIST_SRC
EXTRACT_ELEMENTS= ${DISTNAME}/lib/python/ZPublisher
do-build:
- (cd ${WRKSRC}/..; ${PY_PROG} ${PY_LIBDIR}/compileall.py .)
- (cd ${WRKSRC}/..; ${PY_PROG} -O ${PY_LIBDIR}/compileall.py .)
+ cd ${WRKSRC}/.. && ${PY_PROG} ${PY_LIBDIR}/compileall.py .
+ cd ${WRKSRC}/.. && ${PY_PROG} -O ${PY_LIBDIR}/compileall.py .
do-install:
${INSTALL_SCRIPT_DIR} ${PY_SITEPKG}
${CAT} ${PKGDIR}/PLIST.pre >${PLIST_SRC}
- (cd ${WRKSRC}; ${PAX} -r -w -v -p e ZPublisher ${PY_SITEPKG})
+ cd ${WRKSRC} && ${PAX} -rw -pe ZPublisher ${PY_SITEPKG}
${CHMOD} 755 ${PY_SITEPKG}/ZPublisher/Test.py
- (cd ${PREFIX}; ${FIND} ${PY_SITEPATH}/ZPublisher \
- -type f -print >>${PLIST_SRC})
- (cd ${PREFIX}; ${FIND} -d ${PY_SITEPATH}/ZPublisher \
- -type d -print | ${SED} -e "s/^/@dirrm /" >>${PLIST_SRC})
+ cd ${PREFIX} && ${FIND} ${PY_SITEPATH}/ZPublisher \
+ -type f -print >>${PLIST_SRC}
+ cd ${PREFIX} && ${FIND} -d ${PY_SITEPATH}/ZPublisher \
+ -type d -print | ${SED} -e "s/^/@dirrm /" >>${PLIST_SRC}
${LN} -sf ../${PY_SITEPATH}/ZPublisher/Test.py ${PREFIX}/bin/bobo
.include "../../lang/python20/Makefile.inc"