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 | 7e8d73a2f828db9d35f29b49764e35728972ce24 (patch) | |
tree | b711f279533efa082bd9211a7161438542a8810d /devel/bugzilla3 | |
parent | f46dfbfa33d3c97ae7eb4dca75789144f99079a7 (diff) | |
download | pkgsrc-7e8d73a2f828db9d35f29b49764e35728972ce24.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 'devel/bugzilla3')
-rw-r--r-- | devel/bugzilla3/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/bugzilla3/Makefile b/devel/bugzilla3/Makefile index 4ca769642eb..95426f733dd 100644 --- a/devel/bugzilla3/Makefile +++ b/devel/bugzilla3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2008/05/24 13:19:51 tnn Exp $ +# $NetBSD: Makefile,v 1.7 2008/05/26 02:13:17 joerg Exp $ # DISTNAME= bugzilla-3.0.4 @@ -21,7 +21,7 @@ PKG_DESTDIR_SUPPORT= user-destdir .include "../../mk/bsd.prefs.mk" .include "options.mk" -USE_TOOLS+= perl:run +USE_TOOLS+= pax perl:run NO_BUILD= YES BZ_WEB_GROUP?= ${APACHE_GROUP} @@ -99,7 +99,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/docs/html/*.html ${DESTDIR}${BZDIR}/docs/html .for i in ${PAX_DIRS} - cd ${WRKSRC}/${i} && ${PAX} -rw . ${DESTDIR}${BZDIR}/${i} + cd ${WRKSRC}/${i} && pax -rw . ${DESTDIR}${BZDIR}/${i} ${FIND} ${DESTDIR}${BZDIR}/${i} -type f | ${XARGS} ${CHMOD} ${SHAREMODE} ${FIND} ${DESTDIR}${BZDIR}/${i} -type d | ${XARGS} ${CHMOD} ${PKGDIRMODE} ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DESTDIR}${BZDIR}/${i} |