svn commit: r301481 - head/java/icedtea-web
Jung-uk Kim
jkim at FreeBSD.org
Tue Jul 24 16:55:49 UTC 2012
Author: jkim
Date: Tue Jul 24 16:55:48 2012
New Revision: 301481
URL: http://svn.freebsd.org/changeset/ports/301481
Log:
Fix broken r300965. The options should be defined prior to including
bsd.port.options.mk. While here, convert NOPORTDOCS to DOCS option.
Pointed by: bapt
Modified:
head/java/icedtea-web/Makefile
Modified: head/java/icedtea-web/Makefile
==============================================================================
--- head/java/icedtea-web/Makefile Tue Jul 24 16:47:57 2012 (r301480)
+++ head/java/icedtea-web/Makefile Tue Jul 24 16:55:48 2012 (r301481)
@@ -24,6 +24,14 @@ JAVA_VENDOR= openjdk
JAVA_VERSION= 1.6
USE_XORG= x11
+OPTIONS_DEFINE= PLUGIN RHINO TEST
+OPTIONS_DEFAULT=PLUGIN
+PLUGIN_DESC= Enable the browser plug-in
+RHINO_DESC= Add support for Proxy Auto Config files
+TEST_DESC= Add support for running regression test
+
+.include <bsd.port.options.mk>
+
MAN1= itweb-javaws.1
PLIST_FILES= bin/itweb-javaws bin/itweb-settings \
share/applications/itweb-javaws.desktop \
@@ -38,17 +46,9 @@ RUN_DEPENDS+= ${LOCALBASE}/bin/bash:${PO
CONFIGURE_ARGS+=--with-ecj=no --with-jdk-home="${JAVA_HOME}"
-.include <bsd.port.options.mk>
-
-OPTIONS_DEFINE= PLUGIN RHINO TEST
-OPTIONS_DEFAULT=PLUGIN
-PLUGIN_DESC= Enable the browser plug-in
-RHINO_DESC= Add support for Proxy Auto Config files
-TEST_DESC= Add support for running regression test
-
.include <bsd.port.pre.mk>
-.if defined(NOPORTDOCS)
+.if empty(PORT_OPTIONS:MDOCS)
CONFIGURE_ARGS+= --disable-docs
.endif
More information about the svn-ports-head
mailing list