diff options
author | joerg <joerg@pkgsrc.org> | 2008-05-26 02:13:14 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-05-26 02:13:14 +0000 |
commit | 3d8ef5a52d6570c7a88c64337bb6c476b78c810c (patch) | |
tree | b711f279533efa082bd9211a7161438542a8810d /www/zope29/Makefile | |
parent | 7f7f5ce9170554e6c0c04606c5c2c0548ffab031 (diff) | |
download | pkgsrc-3d8ef5a52d6570c7a88c64337bb6c476b78c810c.tar.gz |
Second round of explicit pax dependencies. As reminded by tnn@,
many packages used to use ${PAX}. Use the common way of directly calling
pax, it is created as tool after all.
Diffstat (limited to 'www/zope29/Makefile')
-rw-r--r-- | www/zope29/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/www/zope29/Makefile b/www/zope29/Makefile index 03cb6489c6c..f9b2d5e6503 100644 --- a/www/zope29/Makefile +++ b/www/zope29/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2008/05/11 16:27:16 taca Exp $ +# $NetBSD: Makefile,v 1.19 2008/05/26 02:13:26 joerg Exp $ # FreeBSD Id: ports/www/zope29/Makefile,v 1.86 2006/08/03 15:53:04 garga Exp DISTNAME= Zope-${ZOPE29_VERSION}-final @@ -13,6 +13,8 @@ COMMENT= Zope ${ZOPE29_VERSION}, the Z Object Publishing Environment DEPENDS+= ${PYPKGPREFIX}-expat>=0:../../textproc/py-expat +USE_TOOLS+= pax + PYTHON_VERSIONS_ACCEPTED= 24 ZOPE_VERSION= 29 @@ -54,8 +56,8 @@ pre-install: ${FIND} ${WRKSRC} -name '*.orig' -print0 | ${XARGS} -0 -- ${RM} post-install: - cd ${WRKSRC}/doc/ZEO; ${PAX} -rw *.txt ${ZOPE_DOC_DIR}/zeo - cd ${WRKSRC}/doc; ${PAX} -rw *.txt ${ZOPE_DOC_DIR}/zope + cd ${WRKSRC}/doc/ZEO; pax -rw *.txt ${ZOPE_DOC_DIR}/zeo + cd ${WRKSRC}/doc; pax -rw *.txt ${ZOPE_DOC_DIR}/zope ${FIND} ${ZOPE_DIR} ${ZOPE_DOC_DIR} -type f -print0 \ | ${XARGS} -0 -- ${CHMOD} a-w+r ${FIND} ${ZOPE_DIR} -type f -name '*.pyc' -print0 | \ |