diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2012-09-10 19:15:11 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2012-09-10 19:15:11 +0000 |
commit | e6d638b4ac3b463304cc25a4335ed6b5ad5d57e6 (patch) | |
tree | fd55b7870aeb67bc33c0d96176b40c3d9ed67414 | |
parent | - Upgrade to version R15B02 (diff) |
- Add perl as a build dependency.
- Fix perl path for javac wrapper. [1]
PR: ports/170772 [1]
-rw-r--r-- | java/icedtea-web/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/java/icedtea-web/Makefile b/java/icedtea-web/Makefile index 26585b3fa905..68032408f244 100644 --- a/java/icedtea-web/Makefile +++ b/java/icedtea-web/Makefile @@ -22,6 +22,7 @@ USE_JAVA= yes JAVA_OS= native JAVA_VENDOR= openjdk JAVA_VERSION= 1.6+ +USE_PERL5_BUILD=yes USE_XORG= x11 OPTIONS_DEFINE= PLUGIN RHINO TEST @@ -91,6 +92,7 @@ CONFIGURE_ARGS+=--with-junit=no .endif post-patch: + ${REINPLACE_CMD} -e 's|/usr/bin/perl|${PERL}|' ${WRKSRC}/javac.in ${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ ${WRKSRC}/launcher/javaws.in |