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/vtcl/Makefile | |
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/vtcl/Makefile')
-rw-r--r-- | devel/vtcl/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/devel/vtcl/Makefile b/devel/vtcl/Makefile index c2ebf50a6e6..a61bf5bd07e 100644 --- a/devel/vtcl/Makefile +++ b/devel/vtcl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2008/03/03 17:45:38 jlam Exp $ +# $NetBSD: Makefile,v 1.5 2008/05/26 02:13:18 joerg Exp $ DISTNAME= vtcl-1.6.0 PKGREVISION= 1 @@ -11,6 +11,7 @@ COMMENT= Visual Tcl/Tk application development environment PKG_DESTDIR_SUPPORT= user-destdir +USE_TOOLS+= pax HAS_CONFIGURE= yes NO_BUILD= yes @@ -27,11 +28,11 @@ do-install: ${INSTALL_SCRIPT_DIR} ${DESTDIR}${VTCLEGDIR} ${INSTALL_SCRIPT} ${WRKSRC}/vtcl ${DESTDIR}${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/vtcl.tcl ${DESTDIR}${VTCLDIR} - cd ${WRKSRC} && ${PAX} -rwpam lib ${DESTDIR}${VTCLDIR} - cd ${WRKSRC} && ${PAX} -rwpam images ${DESTDIR}${VTCLDIR} - cd ${WRKSRC} && ${PAX} -rwpam doc ${DESTDIR}${VTCLDOCDIR} - cd ${WRKSRC} && ${PAX} -rwpam demo ${DESTDIR}${VTCLEGDIR} - cd ${WRKSRC} && ${PAX} -rwpam sample ${DESTDIR}${VTCLEGDIR} + cd ${WRKSRC} && pax -rwpam lib ${DESTDIR}${VTCLDIR} + cd ${WRKSRC} && pax -rwpam images ${DESTDIR}${VTCLDIR} + cd ${WRKSRC} && pax -rwpam doc ${DESTDIR}${VTCLDOCDIR} + cd ${WRKSRC} && pax -rwpam demo ${DESTDIR}${VTCLEGDIR} + cd ${WRKSRC} && pax -rwpam sample ${DESTDIR}${VTCLEGDIR} .include "options.mk" .include "../../mk/bsd.pkg.mk" |