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 /games/imaze/Makefile | |
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 'games/imaze/Makefile')
-rw-r--r-- | games/imaze/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/games/imaze/Makefile b/games/imaze/Makefile index c3b25c060cf..69e16380ea2 100644 --- a/games/imaze/Makefile +++ b/games/imaze/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2008/01/19 09:16:21 wiz Exp $ +# $NetBSD: Makefile,v 1.26 2008/05/26 02:13:19 joerg Exp $ DISTNAME= imaze1.3 PKGNAME= imaze-1.3 @@ -15,11 +15,12 @@ EXTRACT_ONLY= imaze1.3.tar.Z WRKSRC= ${WRKDIR}/imaze USE_X11BASE= yes +USE_TOOLS+= pax INSTALLATION_DIRS= bin lib/X11/app-defaults ${PKGMANDIR}/man6 post-build: - cd ${WRKSRC} && ${PAX} -O -rf ${DISTDIR}/imaze-sounds.tar + cd ${WRKSRC} && pax -O -rf ${DISTDIR}/imaze-sounds.tar .include "../../mk/motif.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |