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 /lang/Cg-compiler | |
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 'lang/Cg-compiler')
-rw-r--r-- | lang/Cg-compiler/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lang/Cg-compiler/Makefile b/lang/Cg-compiler/Makefile index 1379c6e430e..06641c63922 100644 --- a/lang/Cg-compiler/Makefile +++ b/lang/Cg-compiler/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2008/04/07 16:23:01 joerg Exp $ +# $NetBSD: Makefile,v 1.14 2008/05/26 02:13:21 joerg Exp $ # DISTNAME= CgLinux-1.3.0408-0400 @@ -17,6 +17,8 @@ EMUL_REQD= suse>=7.3 PKG_DESTDIR_SUPPORT= user-destdir +USE_TOOLS+= pax + WRKSRC= ${WRKDIR} BUILD_DIRS= # empty RUN_LDCONFIG= yes @@ -34,7 +36,7 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/usr/lib/* ${DESTDIR}${EMULDIR}/lib ${INSTALL_MAN} ${WRKSRC}/usr/share/man/man3/* \ ${DESTDIR}${PREFIX}/${PKGMANDIR}/man3 - cd ${WRKSRC}/usr/local && ${PAX} -rwppm . \ + cd ${WRKSRC}/usr/local && pax -rwppm . \ ${DESTDIR}${PREFIX}/share/NVIDIA-Cg-linux .include "../../mk/bsd.pkg.mk" |