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 /print/ja-vflib-lib/Makefile | |
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 'print/ja-vflib-lib/Makefile')
-rw-r--r-- | print/ja-vflib-lib/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/print/ja-vflib-lib/Makefile b/print/ja-vflib-lib/Makefile index 676ddbfb25a..b8841ee83c0 100644 --- a/print/ja-vflib-lib/Makefile +++ b/print/ja-vflib-lib/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2006/02/24 21:07:51 minskim Exp $ +# $NetBSD: Makefile,v 1.9 2008/05/26 02:13:23 joerg Exp $ .include "Makefile.common" @@ -11,6 +11,8 @@ CONFIGURE_ARGS+= --without-x BUILD_TARGET= build-src INSTALL_TARGET= install-src +USE_TOOLS+= pax + post-build: .for FILE in vfontcap vfontcap.bdf cd ${WRKSRC}; \ @@ -26,7 +28,7 @@ post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/VFlib/${VFLIB_VERSION} cd ${WRKSRC} && ${INSTALL_DATA} COPYING COPYING.LIB README.txt.JP_EUC \ ${PREFIX}/share/VFlib/${VFLIB_VERSION} - cd ${WRKSRC} && ${PAX} -rw jTeX ${PREFIX}/share/VFlib/${VFLIB_VERSION} + cd ${WRKSRC} && pax -rw jTeX ${PREFIX}/share/VFlib/${VFLIB_VERSION} ${FIND} ${PREFIX}/share/VFlib/${VFLIB_VERSION} -type d -print \ -exec ${CHMOD} ${PKGDIRMODE} {} \; ${FIND} ${PREFIX}/share/VFlib/${VFLIB_VERSION} -type f -print \ |