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 /misc/dotfile | |
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 'misc/dotfile')
-rw-r--r-- | misc/dotfile/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/misc/dotfile/Makefile b/misc/dotfile/Makefile index e6ea2caff10..ad5e08bcf7b 100644 --- a/misc/dotfile/Makefile +++ b/misc/dotfile/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.32 2007/12/27 15:13:20 joerg Exp $ +# $NetBSD: Makefile,v 1.33 2008/05/26 02:13:22 joerg Exp $ DISTNAME= dotfile-2.4.1 PKGREVISION= 2 @@ -11,6 +11,8 @@ COMMENT= GUI dotfile generator program to create .config files DEPENDS+= tk>=8.3.2:../../x11/tk +USE_TOOLS+= pax + BUILD_DEFS+= DOTFILE_LANG .include "../../mk/bsd.prefs.mk" @@ -30,7 +32,7 @@ pre-install: rm -f ${WRKSRC}/Generator/makeHelp.orig post-install: - cd ${WRKSRC:Q}/Doc && ${PAX} -rw . ${PREFIX}/share/doc/${PKGNAME_NOREV} + cd ${WRKSRC:Q}/Doc && pax -rw . ${PREFIX}/share/doc/${PKGNAME_NOREV} ${CHOWN} -R ${ROOT_USER}:${ROOT_GROUP} ${PREFIX}/share/doc/${PKGNAME_NOREV} .include "../../mk/bsd.pkg.mk" |