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 /time/kronolith | |
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 'time/kronolith')
-rw-r--r-- | time/kronolith/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/time/kronolith/Makefile b/time/kronolith/Makefile index b04e78c851e..cbe619e3d31 100644 --- a/time/kronolith/Makefile +++ b/time/kronolith/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2008/05/06 20:27:50 adrianp Exp $ +# $NetBSD: Makefile,v 1.13 2008/05/26 02:13:24 joerg Exp $ DISTNAME= kronolith-h3-${KRONOLITHVER} PKGNAME= kronolith-${KRONOLITHVER} @@ -14,6 +14,8 @@ DEPENDS+= horde>=3.0.0:../../www/horde DEPENDS+= ${PHP_PKG_PREFIX}-mysql>=4.3.3:../../databases/php-mysql DEPENDS+= ${PHP_PKG_PREFIX}-pear-Date-[0-9]*:../../time/pear-Date +USE_TOOLS+= pax + .include "../../mk/bsd.prefs.mk" DOCDIR= ${PREFIX}/share/doc/kronolith @@ -80,7 +82,7 @@ do-install: . endfor . for d in ${PAXDIRS} - cd ${WRKSRC}/${d} && ${PAX} -rwpma . ${KRONOLITHDIR}/${d} + cd ${WRKSRC}/${d} && pax -rwpma . ${KRONOLITHDIR}/${d} . endfor ${INSTALL_DATA} ${WRKSRC}/config/*.dist ${KRONOLITHDIR}/config |