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 /textproc/ruby-xmlscan | |
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 'textproc/ruby-xmlscan')
-rw-r--r-- | textproc/ruby-xmlscan/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/textproc/ruby-xmlscan/Makefile b/textproc/ruby-xmlscan/Makefile index 1c5c52c260b..b30bc393482 100644 --- a/textproc/ruby-xmlscan/Makefile +++ b/textproc/ruby-xmlscan/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2007/04/01 01:58:38 obache Exp $ +# $NetBSD: Makefile,v 1.4 2008/05/26 02:13:24 joerg Exp $ # DISTNAME= xmlscan-${VER} @@ -14,6 +14,7 @@ VER= 0.2.3 NO_BUILD= yes USE_RUBY_INSTALL= yes +USE_TOOLS+= pax REPLACE_RUBY= samples/getxmlchar.rb samples/xmlbench.rb \ samples/xmlconftest.rb @@ -38,7 +39,7 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/doc/ja/manual.ja.html ${RUBY_DOCDIR}/xmlscan/ja ${INSTALL_DATA} ${WRKSRC}/doc/ja/manual.ja.rd ${RUBY_DOCDIR}/xmlscan/ja ${INSTALL_DATA_DIR} ${RUBY_EXAMPLESDIR}/xmlscan - cd ${WRKSRC}/samples && ${PAX} -rw -pp * ${RUBY_EXAMPLESDIR}/xmlscan + cd ${WRKSRC}/samples && pax -rw -pp * ${RUBY_EXAMPLESDIR}/xmlscan .include "../../lang/ruby/modules.mk" .include "../../mk/bsd.pkg.mk" |