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/RTFM | |
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/RTFM')
-rw-r--r-- | devel/RTFM/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/devel/RTFM/Makefile b/devel/RTFM/Makefile index 1df79ec65b8..354af9dd14b 100644 --- a/devel/RTFM/Makefile +++ b/devel/RTFM/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2008/04/30 10:20:20 cube Exp $ +# $NetBSD: Makefile,v 1.8 2008/05/26 02:13:17 joerg Exp $ # DISTNAME= RTFM-2.0.4 @@ -12,6 +12,8 @@ COMMENT= Enterprise-grade knowledge management tool DEPENDS+= rt>=3.4.5:../../devel/rt3 +USE_TOOLS+= pax + PKG_DESTDIR_SUPPORT= user-destdir .include "../../devel/rt3/dirs.mk" @@ -28,15 +30,15 @@ do-install: @${ECHO} "=> Libraries" ${INSTALL_DATA_DIR} ${DESTDIR}${RT_LIB_DIR} cd ${WRKSRC}/lib/RT && ${FIND} . -type f ! -name '*.orig' 2>/dev/null | \ - ${PAX} -rw ${DESTDIR}${RT_LIB_DIR}/RT + pax -rw ${DESTDIR}${RT_LIB_DIR}/RT @${ECHO} "=> HTML Documents" ${INSTALL_DATA_DIR} ${DESTDIR}${RT_HTML_DIR} cd ${WRKSRC}/html && ${FIND} . -type f ! -name '*.orig' 2>/dev/null | \ - ${PAX} -rw ${DESTDIR}${RT_HTML_DIR} + pax -rw ${DESTDIR}${RT_HTML_DIR} @${ECHO} "=> Locales" ${INSTALL_DATA_DIR} ${DESTDIR}${RT_I18N_DIR} cd ${WRKSRC}/po && ${FIND} . -type f ! -name '*.orig' 2>/dev/null | \ - ${PAX} -rw ${DESTDIR}${RT_I18N_DIR} + pax -rw ${DESTDIR}${RT_I18N_DIR} @${ECHO} "=> Database Schemas" ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/RTFM for file in acl.Oracle acl.Pg acl.mysql schema.Oracle schema.Pg schema.mysql; \ |