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 /net/bind9 | |
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 'net/bind9')
-rw-r--r-- | net/bind9/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/bind9/Makefile b/net/bind9/Makefile index 78c574572c3..ad4b1aef7da 100644 --- a/net/bind9/Makefile +++ b/net/bind9/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.97 2008/05/11 00:00:59 tonnerre Exp $ +# $NetBSD: Makefile,v 1.98 2008/05/26 02:13:22 joerg Exp $ DISTNAME= bind-${BIND_VERSION} PKGNAME= ${DISTNAME:S/-P1/pl1/} @@ -18,6 +18,7 @@ BUILD_DEFS+= IPV6_READY BUILD_DEFS+= BIND_DIR VARBASE +USE_TOOLS+= pax USE_LIBTOOL= yes GNU_CONFIGURE= yes @@ -60,7 +61,7 @@ post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/bind9/misc ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/bind9/rfc ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/bind9 - set -e; cd ${WRKSRC}/doc && ${PAX} -rwppm \ + set -e; cd ${WRKSRC}/doc && pax -rwppm \ -s ',.*xsl.*,,' -s ',Makefile.*,,' -s ',.*\.pl,,' \ . ${PREFIX}/share/doc/bind9 ${CHMOD} -R g-w ${PREFIX}/share/doc/bind9 |