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 /audio/festival-doc | |
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 'audio/festival-doc')
-rw-r--r-- | audio/festival-doc/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/audio/festival-doc/Makefile b/audio/festival-doc/Makefile index 4b13b1980e5..39a1f2ac491 100644 --- a/audio/festival-doc/Makefile +++ b/audio/festival-doc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2008/03/02 06:10:31 jlam Exp $ +# $NetBSD: Makefile,v 1.8 2008/05/26 02:13:15 joerg Exp $ DISTNAME= festdoc-1.4.0.1 PKGNAME= festival-doc-1.4.0.1 @@ -14,6 +14,8 @@ PKG_DESTDIR_SUPPORT= user-destdir NO_BUILD= yes +USE_TOOLS+= pax + DOC= ${PREFIX}/share/doc/festival INFO_FILES= # PLIST @@ -30,13 +32,13 @@ post-extract: do-install: ${INSTALL_DATA_DIR} ${DESTDIR}${DOC} cd ${WRKSRC}; \ - ${PAX} -rw speechtools ${DESTDIR}${DOC}; \ + pax -rw speechtools ${DESTDIR}${DOC}; \ cd festival; \ for f in info/*.info info/*.info-[0-9]*; do \ ${INSTALL_DATA} $${f} ${DESTDIR}${PREFIX}/${PKGINFODIR};\ done; \ - ${PAX} -rw user-manual ${DESTDIR}${DOC}; \ - ${PAX} -rw src-manual ${DESTDIR}${DOC}; \ + pax -rw user-manual ${DESTDIR}${DOC}; \ + pax -rw src-manual ${DESTDIR}${DOC}; \ for f in festival.* refcard.*; do \ ${INSTALL_DATA} $${f} ${DESTDIR}${DOC}; \ done |