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 /lang/sun-jre14/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 'lang/sun-jre14/Makefile')
-rw-r--r-- | lang/sun-jre14/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lang/sun-jre14/Makefile b/lang/sun-jre14/Makefile index 8574f928f86..6ad4ab23213 100644 --- a/lang/sun-jre14/Makefile +++ b/lang/sun-jre14/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.48 2008/04/12 22:43:03 jlam Exp $ +# $NetBSD: Makefile,v 1.49 2008/05/26 02:13:21 joerg Exp $ # Note: Regen distinfo with PKG_DEFAULT_OPTIONS+=sun-jre-jce @@ -10,6 +10,8 @@ COMMENT= Sun's Java(tm) 2 Runtime Environment 1.4.2 SHORT= JRE +USE_TOOLS+= pax + WRKSRC= ${WRKDIR}/j2re1.4.2_17 JAVA_WRAPPERS= java keytool orbd policytool rmid rmiregistry \ servertool tnameserv @@ -95,7 +97,7 @@ do-configure: pre-install: .if !empty(PKG_OPTIONS:Msun-jre-jce) - cd ${WRKDIR}/jce ; ${PAX} -rw -pe -v . ${WRKSRC}/lib/security + cd ${WRKDIR}/jce ; pax -rw -pe -v . ${WRKSRC}/lib/security .endif .include "../../mk/bsd.pkg.mk" |