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 /security/CSP | |
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 'security/CSP')
-rw-r--r-- | security/CSP/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/security/CSP/Makefile b/security/CSP/Makefile index 1578175723c..a6f2599fbfc 100644 --- a/security/CSP/Makefile +++ b/security/CSP/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2008/01/18 05:09:36 tnn Exp $ +# $NetBSD: Makefile,v 1.4 2008/05/26 02:13:23 joerg Exp $ # DISTNAME= CSP-0.32 @@ -15,6 +15,8 @@ DEPENDS+= p5-Date-Calc>=5.4:../../devel/p5-Date-Calc DEPENDS+= p5-IPC-Run>=0.79:../../devel/p5-IPC-Run DEPENDS+= p5-Term-Prompt>=1.03:../../devel/p5-Term-Prompt +USE_TOOLS+= pax + CSPGUIDE= cspguide.pdf SITES.${CSPGUIDE}= http://devel.it.su.se/content/1/c4/32/90/ EXTRACT_ONLY= ${DISTFILES:N*.pdf} @@ -35,7 +37,7 @@ SUBST_SED.csp= -e s,@@CSPHOME@@,${CSPHOME}, \ SUBST_STAGE.csp= post-patch post-install: - cd ${WRKSRC}/ca && ${FIND} . -type f | ${PAX} -rw ${CSPHOME} + cd ${WRKSRC}/ca && ${FIND} . -type f | pax -rw ${CSPHOME} ${INSTALL_DATA} ${DISTDIR}/${CSPGUIDE} ${PREFIX}/share/doc/csp .include "../../lang/perl5/module.mk" |