diff options
author | joerg <joerg> | 2008-05-26 02:13:14 +0000 |
---|---|---|
committer | joerg <joerg> | 2008-05-26 02:13:14 +0000 |
commit | 2374ca422f2eb8b46ed600c7bb21740b2865d899 (patch) | |
tree | b711f279533efa082bd9211a7161438542a8810d /devel/mantis | |
parent | ef56178a4a7ad8f02178aa72c5c4a4567ade918b (diff) | |
download | pkgsrc-2374ca422f2eb8b46ed600c7bb21740b2865d899.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/mantis')
-rw-r--r-- | devel/mantis/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/devel/mantis/Makefile b/devel/mantis/Makefile index b0591912e0e..2a41e9ed4aa 100644 --- a/devel/mantis/Makefile +++ b/devel/mantis/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.30 2008/05/14 21:43:06 adrianp Exp $ +# $NetBSD: Makefile,v 1.31 2008/05/26 02:13:17 joerg Exp $ DISTNAME= mantis-1.1.1 CATEGORIES= devel www @@ -15,6 +15,8 @@ PKG_DESTDIR_SUPPORT= user-destdir NO_BUILD= YES +USE_TOOLS+= pax + .include "../../mk/bsd.prefs.mk" PKG_OPTIONS_VAR= PKG_OPTIONS.mantis @@ -63,7 +65,7 @@ do-install: . endfor cd ${WRKSRC} && ${FIND} . -name .cvsignore -print | ${XARGS} ${RM} - cd ${WRKSRC} && ${PAX} -rwpppm . ${DESTDIR}${MANTIS_HOME} + cd ${WRKSRC} && pax -rwpppm . ${DESTDIR}${MANTIS_HOME} cd ${DESTDIR}${MANTIS_HOME} && \ ${FIND} . -type f | ${XARGS} ${CHMOD} ${SHAREMODE} |