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 /devel/hptools | |
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 'devel/hptools')
-rw-r--r-- | devel/hptools/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/devel/hptools/Makefile b/devel/hptools/Makefile index 694d9e6fdd7..6cce7ba69b7 100644 --- a/devel/hptools/Makefile +++ b/devel/hptools/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2007/11/18 10:39:57 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2008/05/26 02:13:17 joerg Exp $ # DISTNAME= hptools-src-3.0.8 @@ -20,12 +20,13 @@ WRKSRC= ${WRKDIR}/Hptools GNU_CONFIGURE= YES CONFIGURE_DIRS= support BUILD_DIRS= support +USE_TOOLS+= pax post-build: ${CHMOD} ${SHAREMODE} ${WRKSRC}/doc/* post-install: cd ${WRKSRC} \ - && ${PAX} -rw -pam -s ',^doc,hptools,g' doc ${PREFIX}/share/doc + && pax -rw -pam -s ',^doc,hptools,g' doc ${PREFIX}/share/doc .include "../../mk/bsd.pkg.mk" |