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 /editors/rox-edit | |
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 'editors/rox-edit')
-rw-r--r-- | editors/rox-edit/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/editors/rox-edit/Makefile b/editors/rox-edit/Makefile index 0ee89ce4f2f..77f6659d7fd 100644 --- a/editors/rox-edit/Makefile +++ b/editors/rox-edit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2008/03/03 18:25:53 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2008/05/26 02:13:18 joerg Exp $ # DISTNAME= edit-2.0 @@ -14,6 +14,8 @@ COMMENT= Simple text editor for ROX DEPENDS+= rox-lib>=2.0.2nb2:../../devel/rox-lib +USE_TOOLS+= pax + PKG_DESTDIR_SUPPORT= user-destdir WRKSRC= ${WRKDIR}/${DISTNAME}/Edit @@ -36,7 +38,7 @@ post-patch: @${RM} -f ${WRKSRC}/.cvsignore do-install: - cd ${WRKSRC} && ${PAX} -rw . ${DESTDIR}${PREFIX}/share/rox/Edit + cd ${WRKSRC} && pax -rw . ${DESTDIR}${PREFIX}/share/rox/Edit .include "../../lang/python/application.mk" .include "../../mk/bsd.pkg.mk" |