mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-17 08:01:36 +00:00
. Enable parallel compilation during the build of HotSpot. Note that we
can't use -j in general since the build of the other bits is almost certainly not -j safe. If set, this will speed up the build for those with an SMP box. [1] . Install the cacerts file from Sun's JDK 1.5.0_06 release rather than using the almost empty one that comes with the SCSL source. [2] . Bump PORTREVISION for the second change. PR: 87552 [1] Submitted by: leafy <leafy@leafy.idv.tw> [1] Prompted by: Panagiotis Astithas <past@ebs.gr> [2]
This commit is contained in:
parent
1f215821d0
commit
25e9cfb388
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=155088
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= jdk
|
||||
PORTVERSION= ${JDK_VERSION}p${JDK_PATCHSET_VERSION}
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= java devel
|
||||
MASTER_SITES= # http://www.sun.com/software/communitysource/j2se/java2/download.xml
|
||||
# http://www.eyesbeyond.com/freebsddom/java/jdk15.html
|
||||
@ -120,6 +120,9 @@ MAKE_ENV+= ALT_BOOTDIR="${JDK14DIR}" \
|
||||
.if !defined(WITH_IPV6)
|
||||
MAKE_ENV+= DONT_ENABLE_IPV6="YES"
|
||||
.endif
|
||||
.if defined(HOTSPOT_BUILD_JOBS)
|
||||
MAKE_ENV+= HOTSPOT_BUILD_JOBS=${HOTSPOT_BUILD_JOBS}
|
||||
.endif
|
||||
|
||||
ALL_TARGET= all
|
||||
|
||||
@ -311,6 +314,8 @@ do-install:
|
||||
@${FIND} -s ${JDKIMAGEDIR_G} -not -type d | \
|
||||
${SED} -ne 's#^${JDKIMAGEDIR_G}#jdk${JDK_VERSION}#p' >> ${TMPPLIST}
|
||||
.endif
|
||||
${INSTALL_DATA} ${FILESDIR}/cacerts \
|
||||
${PREFIX}/jdk${JDK_VERSION}/jre/lib/security/cacerts
|
||||
@${FIND} -s -d ${PREFIX}/jdk${JDK_VERSION} -type d | \
|
||||
${SED} -ne 's#^${PREFIX}/#@dirrm #p' >> ${TMPPLIST}
|
||||
@${ECHO_MSG} "@exec ${LOCALBASE}/bin/registervm ${PREFIX}/jdk${JDK_VERSION}/bin/java # FREEBSD-JDK${JDK_VERSION}" >> ${TMPPLIST}
|
||||
|
BIN
java/jdk15/files/cacerts
Normal file
BIN
java/jdk15/files/cacerts
Normal file
Binary file not shown.
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= jdk
|
||||
PORTVERSION= ${JDK_VERSION}p${JDK_PATCHSET_VERSION}
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= java devel
|
||||
MASTER_SITES= # http://www.sun.com/software/communitysource/j2se/java2/download.xml
|
||||
# http://www.eyesbeyond.com/freebsddom/java/jdk15.html
|
||||
@ -120,6 +120,9 @@ MAKE_ENV+= ALT_BOOTDIR="${JDK14DIR}" \
|
||||
.if !defined(WITH_IPV6)
|
||||
MAKE_ENV+= DONT_ENABLE_IPV6="YES"
|
||||
.endif
|
||||
.if defined(HOTSPOT_BUILD_JOBS)
|
||||
MAKE_ENV+= HOTSPOT_BUILD_JOBS=${HOTSPOT_BUILD_JOBS}
|
||||
.endif
|
||||
|
||||
ALL_TARGET= all
|
||||
|
||||
@ -311,6 +314,8 @@ do-install:
|
||||
@${FIND} -s ${JDKIMAGEDIR_G} -not -type d | \
|
||||
${SED} -ne 's#^${JDKIMAGEDIR_G}#jdk${JDK_VERSION}#p' >> ${TMPPLIST}
|
||||
.endif
|
||||
${INSTALL_DATA} ${FILESDIR}/cacerts \
|
||||
${PREFIX}/jdk${JDK_VERSION}/jre/lib/security/cacerts
|
||||
@${FIND} -s -d ${PREFIX}/jdk${JDK_VERSION} -type d | \
|
||||
${SED} -ne 's#^${PREFIX}/#@dirrm #p' >> ${TMPPLIST}
|
||||
@${ECHO_MSG} "@exec ${LOCALBASE}/bin/registervm ${PREFIX}/jdk${JDK_VERSION}/bin/java # FREEBSD-JDK${JDK_VERSION}" >> ${TMPPLIST}
|
||||
|
BIN
java/jdk16/files/cacerts
Normal file
BIN
java/jdk16/files/cacerts
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user