pkgsrc/lang/sun-jre7/Makefile.common
ryoon fee5710e87 Update to 7.0.60
* PLIST.linux-i386 and PLIST.linux-x86_64 are confirmed.

Changelog: http://www.oracle.com/technetwork/java/javase/7u60-relnotes-2200106.html
Java SE Development Kit 7, Update 60 (JDK 7u60)

The full version string for this update release is 1.7.0_60-b19 (where "b" means "build"). The version number is 7u60.
Highlights

This update release contains several enhancements and changes including the following:

  Java Mission Control
  New Features and Changes

IANA Data 2014b

JDK 7u60 contains IANA time zone data version 2014b. For more information, refer to Timezone Data Versions in the JRE Software.

JavaFX

This JDK release includes JavaFX version 2.2.60.
Java Mission Control

This JDK release includes Java Mission Control(JMC) version 5.3. For more information, see JMC 5.3 Release Notes.
New Features and Changes

Java ignores deployment.expiration.check.enabled property for first launch

If you have an older version of Java and expiration check is turned off through deployment.properties file, Java may ignore this property for first launch.

To ensure that expiration check is disabled, use the following Java Web Start command:
javaws -userConfig deployment.expiration.check.enabled false

If this property is changed in the deployment.properties file, open the Java Control Panel before starting an application to ensure that the native cache is synchronized with the file. For more information, see Deployment Configuration File and Properties.
New flags added to Java Management API

The flags MinHeapFreeRatio and MaxHeapFreeRatio have been made manageable. This means they can be changed at runtime using the management API in Java. Support for these flags have also been added to the ParallelGC as part of the adaptive size policy.
Bug Fixes

For a list of bug fixes included in this release, see JDK 7u60 Bug Fixes page.

The following are some of the notable bug fixes in this release:

Area: security-libs/java.security
Synopsis: Realm.getRealmsList returns realms list in wrong order

Java does not support the [capaths] section in krb5.conf correctly if there are more then one intermediate realm between the client realm and the server realm.

See 8012615.
2014-06-06 14:28:40 +00:00

86 lines
2.3 KiB
Text

# $NetBSD: Makefile.common,v 1.7 2014/06/06 14:28:40 ryoon Exp $
# used by lang/sun-jre7/Makefile
# used by lang/sun-jdk7/Makefile
CATEGORIES= lang java
COMMENT= Sun's Java(tm) 2 Standard Edition, ${DOWNLOAD_NAME}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.oracle.com/technetwork/java/index.html
DOWNLOAD= http://www.oracle.com/technetwork/java/javase/downloads/index-jsp-138363.html
ARCHIVE= http://www.oracle.com/technetwork/java/javase/archive-139210.html
RESTRICTED= Redistribution of repackaged binaries not permitted
NO_SRC_ON_CDROM=${RESTRICTED}
NO_SRC_ON_FTP= ${RESTRICTED}
NO_BIN_ON_CDROM=${RESTRICTED}
NO_BIN_ON_FTP= ${RESTRICTED}
EMUL_PLATFORMS= linux-i386 linux-x86_64 solaris-i386 solaris-x86_64
USE_TOOLS+= pax
# JDK7 Update number
UPDATE_NUMBER= 60
.include "../../mk/bsd.prefs.mk"
.if ${EMUL_OPSYS} == "solaris"
DIST_OS= solaris
.else
DIST_OS= linux
EMUL_MODULES.linux= compat locale x11
.endif
DIST_ARCH.i386= i586
DIST_ARCH.x86_64= x64
.if defined(DIST_ARCH.${EMUL_ARCH})
DIST_ARCH= ${DIST_ARCH.${EMUL_ARCH}}
.else
DIST_ARCH= ${EMUL_ARCH}
.endif
JAVA_ARCH.i386= i386
JAVA_ARCH.x86_64= amd64
.if defined(JAVA_ARCH.${EMUL_ARCH})
JAVA_ARCH= ${JAVA_ARCH.${EMUL_ARCH}}
.else
JAVA_ARCH= ${EMUL_ARCH}
.endif
FILES_SUBST+= JAVA_ARCH=${JAVA_ARCH:Q}
INTERACTIVE_STAGE= fetch
BUILD_DIRS= # empty
JAVA_HOME= ${PREFIX}/java/sun-7
JAVA_NAME= sun7
JAVA_UNLIMIT= datasize
JAVA_LD_LIBRARY_PATH= ${JAVA_HOME}/lib/${JAVA_ARCH}/jli
MESSAGE_SUBST+= JAVA_HOME=${JAVA_HOME:Q}
EXTRACT_ENV+= HOME=${WRKDIR}/fake_home
# the following forces compression of jarfiles, which is a huge disk
# space win and trivial to no speed reduction in the face of the
# new class sharing in Java 5+... -tvierling
EXTRACT_ENV+= UNPACK200_FLAGS=-Htrue
FETCH_MESSAGE+= " The file ${DISTNAME}${EXTRACT_SUFX} containing ${DOWNLOAD_NAME}"
FETCH_MESSAGE+= ""
FETCH_MESSAGE+= " must be fetched into:"
FETCH_MESSAGE+= " ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}"
FETCH_MESSAGE+= " from:"
FETCH_MESSAGE+= " ${DOWNLOAD}"
FETCH_MESSAGE+= " or ${ARCHIVE}"
FETCH_MESSAGE+= ""
FETCH_MESSAGE+= " Click Download for '${DOWNLOAD_NAME}', read and accept the"
FETCH_MESSAGE+= " license, then choose '${EMUL_OPSYS} tar.gz file'."
do-install:
${INSTALL_PROGRAM_DIR} ${DESTDIR}${JAVA_HOME}
cd ${WRKSRC} && pax -rwp ma . ${DESTDIR}${JAVA_HOME}
.include "../../mk/java-env.mk"