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 /x11/rox-wallpaper/Makefile | |
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 'x11/rox-wallpaper/Makefile')
-rw-r--r-- | x11/rox-wallpaper/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/x11/rox-wallpaper/Makefile b/x11/rox-wallpaper/Makefile index 353761acd25..d2b1aaacd8e 100644 --- a/x11/rox-wallpaper/Makefile +++ b/x11/rox-wallpaper/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2006/02/05 23:11:43 joerg Exp $ +# $NetBSD: Makefile,v 1.3 2008/05/26 02:13:26 joerg Exp $ # DISTNAME= wallpaper-2.0 @@ -29,11 +29,13 @@ SUBST_STAGE.lib= post-patch SUBST_FILES.lib= findrox.py SUBST_SED.lib= -e 's,/usr/local/lib,${PREFIX}/share/rox,g' +USE_TOOLS+= pax + post-patch: @${FIND} ${WRKSRC} -name 'CVS' -print | ${XARGS} ${RM} -rf do-install: - cd ${WRKSRC} && ${PAX} -rw . ${PREFIX}/share/rox/Wallpaper + cd ${WRKSRC} && pax -rw . ${PREFIX}/share/rox/Wallpaper .include "../../lang/python/application.mk" .include "../../mk/bsd.pkg.mk" |