diff options
author | glewis <glewis@FreeBSD.org> | 2004-06-10 02:17:24 +0800 |
---|---|---|
committer | glewis <glewis@FreeBSD.org> | 2004-06-10 02:17:24 +0800 |
commit | c69baf82a7123c8d3ea9981b9a635f8427d0fbc5 (patch) | |
tree | 86c55b28796c19dfd707d87ded6eda45d05b4d29 /Mk/bsd.java.mk | |
parent | a5d5faee44ad39d0a62452166cc55451e6ed2729 (diff) | |
download | freebsd-ports-gnome-c69baf82a7123c8d3ea9981b9a635f8427d0fbc5.tar.gz freebsd-ports-gnome-c69baf82a7123c8d3ea9981b9a635f8427d0fbc5.tar.zst freebsd-ports-gnome-c69baf82a7123c8d3ea9981b9a635f8427d0fbc5.zip |
. Switched stage 6 and 7 so JAVAC is no longer empty when not using jikes
. Added '-bootclasspath ${JAVA_CLASSES}' to the command-line for JAVAC when
jikes is used as a substitute for javac.
PR: 66349
Submitted by: Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
Diffstat (limited to 'Mk/bsd.java.mk')
-rw-r--r-- | Mk/bsd.java.mk | 70 |
1 files changed, 35 insertions, 35 deletions
diff --git a/Mk/bsd.java.mk b/Mk/bsd.java.mk index c95dfeecaff0..e60c670a8b51 100644 --- a/Mk/bsd.java.mk +++ b/Mk/bsd.java.mk @@ -115,8 +115,8 @@ Java_Include_MAINTAINER= znerd@FreeBSD.org # suitable # Stage 4: <REMOVED> (merged in stage 3) # Stage 5: Decide the exact JDK to use (or install) -# Stage 6: Define all settings for the port to use -# Stage 7: Add any dependencies if necessary +# Stage 6: Add any dependencies if necessary +# Stage 7: Define all settings for the port to use # . if defined(USE_JAVA) @@ -371,8 +371,38 @@ JAVA_PORT_VENDOR= ${_JAVA_PORT_INFO:MVENDOR=*:S,VENDOR=,,} JAVA_PORT_VENDOR_DESCRIPTION:= ${JAVA_PORT_VENDOR:S/^/\${_JAVA_VENDOR_/:S/$/}/} JAVA_PORT_OS_DESCRIPTION:= ${JAVA_PORT_OS:S/^/\${_JAVA_OS_/:S/$/}/} +#------------------------------------------------------------------------------- +# Stage 6: Add any dependencies if necessary +# + +# Add the JDK port to the dependencies +DEPEND_JAVA= ${JAVA}:${PORTSDIR}/${JAVA_PORT} +# When nothing is set, assume JAVA_BUILD=jdk and JAVA_RUN=jre +# (unless NO_BUILD is set) +. if !defined(JAVA_EXTRACT) && !defined(JAVA_BUILD) && !defined(JAVA_RUN) +. if !defined(NO_BUILD) +JAVA_BUILD= jdk +. endif +JAVA_RUN= jre +. endif +. if defined(JAVA_EXTRACT) +EXTRACT_DEPENDS+= ${DEPEND_JAVA} +. endif +. if defined(JAVA_BUILD) +. if defined(NO_BUILD) +.BEGIN: + @${ECHO_CMD} "${PKGNAME}: JAVA_BUILD and NO_BUILD cannot be set at the same time."; + @${FALSE} +. endif +BUILD_DEPENDS+= ${DEPEND_JAVA} +. endif +. if defined(JAVA_RUN) +RUN_DEPENDS+= ${DEPEND_JAVA} +. endif + + #----------------------------------------------------------------------------- -# Stage 6: Define all settings for the port to use +# Stage 7: Define all settings for the port to use # # At this stage both JAVA_HOME and JAVA_PORT are definitely given a value. # @@ -388,7 +418,7 @@ JAVA_PORT_OS_DESCRIPTION:= ${JAVA_PORT_OS:S/^/\${_JAVA_OS_/:S/$/}/} # First test if jikes is needed (and if USE_JIKES has a correct value) . if defined(USE_JIKES) . if (${USE_JIKES} == "YES") || (${USE_JIKES} == "yes") -JAVAC= ${_JIKES_PATH} +JAVAC= ${_JIKES_PATH} -bootclasspath ${JAVA_CLASSES} BUILD_DEPENDS+= ${DEPEND_JIKES} . elif !((${USE_JIKES} == "NO") || (${USE_JIKES} == "no")) .BEGIN: @@ -401,7 +431,7 @@ BUILD_DEPENDS+= ${DEPEND_JIKES} . if (${JAVA_BUILD} == "jdk" || ${JAVA_BUILD} == "JDK") && !defined(JAVAC) # Use jikes if available and not explicitly forbidden . if exists(${_JIKES_PATH}) && !defined(USE_JIKES) -JAVAC= ${_JIKES_PATH} +JAVAC= ${_JIKES_PATH} -bootclasspath ${JAVA_CLASSES} BUILD_DEPENDS+= ${DEPEND_JIKES} # Otherwise use 'javac' . else @@ -438,36 +468,6 @@ JAVA_CLASSES= ${JAVA_HOME}/jre/lib/rt.jar #------------------------------------------------------------------------------- -# Stage 7: Add any dependencies if necessary -# - -# Add the JDK port to the dependencies -DEPEND_JAVA= ${JAVA}:${PORTSDIR}/${JAVA_PORT} -# When nothing is set, assume JAVA_BUILD=jdk and JAVA_RUN=jre -# (unless NO_BUILD is set) -. if !defined(JAVA_EXTRACT) && !defined(JAVA_BUILD) && !defined(JAVA_RUN) -. if !defined(NO_BUILD) -JAVA_BUILD= jdk -. endif -JAVA_RUN= jre -. endif -. if defined(JAVA_EXTRACT) -EXTRACT_DEPENDS+= ${DEPEND_JAVA} -. endif -. if defined(JAVA_BUILD) -. if defined(NO_BUILD) -.BEGIN: - @${ECHO_CMD} "${PKGNAME}: JAVA_BUILD and NO_BUILD cannot be set at the same time."; - @${FALSE} -. endif -BUILD_DEPENDS+= ${DEPEND_JAVA} -. endif -. if defined(JAVA_RUN) -RUN_DEPENDS+= ${DEPEND_JAVA} -. endif - - -#------------------------------------------------------------------------------- # Additional Java support # Debug target |