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/mercury | |
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/mercury')
-rw-r--r-- | lang/mercury/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/mercury/Makefile b/lang/mercury/Makefile index b836dca32fa..c6a1528b638 100644 --- a/lang/mercury/Makefile +++ b/lang/mercury/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2008/03/04 16:38:12 jlam Exp $ +# $NetBSD: Makefile,v 1.34 2008/05/26 02:13:21 joerg Exp $ DISTNAME= mercury-compiler-0.11.0 PKGNAME= mercury-0.11.0 @@ -14,7 +14,7 @@ COMMENT= Modern logic/functional programming language PKG_DESTDIR_SUPPORT= user-destdir GNU_CONFIGURE= yes -USE_TOOLS+= gmake +USE_TOOLS+= gmake pax USE_GNU_READLINE= yes # rl_prep_term_function INFO_FILES= # PLIST @@ -48,11 +48,11 @@ do-build: cd ${WRKSRC} && ${BUILD_MAKE_CMD} install do-install: - cd ${WRKSRC}/tmp && ${PAX} -rw . ${DESTDIR}${PREFIX} + cd ${WRKSRC}/tmp && pax -rw . ${DESTDIR}${PREFIX} ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/examples/mercury ${FIND} ${WRKSRC} -type d -name "CVS" -print | ${XARGS} ${RM} -fr ${FIND} ${WRKSRC} -type f -name ".cvsignore" -print | ${XARGS} ${RM} -f cd ${WRKSRC}/samples && \ - ${PAX} -rw . ${DESTDIR}${PREFIX}/share/examples/mercury + pax -rw . ${DESTDIR}${PREFIX}/share/examples/mercury .include "../../mk/bsd.pkg.mk" |