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 /devel/hdf5 | |
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 'devel/hdf5')
-rw-r--r-- | devel/hdf5/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/hdf5/Makefile b/devel/hdf5/Makefile index 41e9aab639d..4634fb675b4 100644 --- a/devel/hdf5/Makefile +++ b/devel/hdf5/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.39 2007/09/18 18:58:08 drochner Exp $ +# $NetBSD: Makefile,v 1.40 2008/05/26 02:13:17 joerg Exp $ DISTNAME= hdf5-1.6.6 CATEGORIES= devel @@ -10,7 +10,7 @@ COMMENT= Hierarchical Data Format (new generation) DIST_SUBDIR= ${PKGNAME_NOREV} USE_LIBTOOL= yes -USE_TOOLS+= tr +USE_TOOLS+= pax tr GNU_CONFIGURE= yes TEST_TARGET= check #CONFIGURE_ARGS+= --disable-production --enable-debug @@ -35,7 +35,7 @@ post-install: release_docs/RELEASE.txt ${PREFIX}/share/doc/hdf5 ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/hdf5/html # avoid installing the Makefile and Makefile.in's They are not needed - cd ${WRKSRC}/doc/html && ${PAX} -s '/.*Makefile.*//' -rwpm . ${PREFIX}/share/doc/hdf5/html + cd ${WRKSRC}/doc/html && pax -s '/.*Makefile.*//' -rwpm . ${PREFIX}/share/doc/hdf5/html ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/doc/hdf5/html .include "../../devel/zlib/buildlink3.mk" |