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/rox-lib | |
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/rox-lib')
-rw-r--r-- | devel/rox-lib/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/devel/rox-lib/Makefile b/devel/rox-lib/Makefile index 9b002e304f5..8ce4d4a1218 100644 --- a/devel/rox-lib/Makefile +++ b/devel/rox-lib/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2008/03/03 17:45:37 jlam Exp $ +# $NetBSD: Makefile,v 1.7 2008/05/26 02:13:18 joerg Exp $ # DISTNAME= rox-lib-2.0.2 @@ -21,6 +21,8 @@ DIST_SUBDIR= rox NO_BUILD= yes +USE_TOOLS+= pax + PYTHON_PATCH_SCRIPTS= AppRun MakeDist PYTHON_PATCH_SCRIPTS+= python/make_docs.py PYTHON_PATCH_SCRIPTS+= tests/python/*.py @@ -43,7 +45,7 @@ SUBST_FILES.lib= Help/findrox.py SUBST_SED.lib= -e 's,/usr/local/lib,${PREFIX}/share/rox,g' do-install: - cd ${WRKSRC} && ${PAX} -rw . ${DESTDIR}${PREFIX}/share/rox/ROX-Lib2 + cd ${WRKSRC} && pax -rw . ${DESTDIR}${PREFIX}/share/rox/ROX-Lib2 .include "../../lang/python/application.mk" .include "../../x11/py-gtk2/buildlink3.mk" |