40c8b687bb
Changes since 1.4.2_07 according to http://java.sun.com/j2se/1.4.2/ReleaseNotes.html: - Hotspot client compiler overfills CodeBuffer: crashes when deoptimizing. - ShouldNotReachHere() failure at hotspot/src/cpu/i486/vm/c1_FrameMap_i486.cpp, 92 - JVM outputs exceptions or crash with a program using Big interger in 1.4.2_08b2 - Flattened alias type for [KlassPtr + offset] must be consistent - vtest failed intermittenly when running with tiger b23 -server -Xcomp - BugFixes from Azul Systems - SIGSEGV in Type*Type::meet(const Type*)const+0x0 - 1.4.2_06 crashes when setting -XX:CompileThreshold=200 -server on Windows - -XX:+AggressiveHeap broken in build 1.4.2_22 for Windows/IA64 - CMS: large unused perm gen can degrade scavenge times on MP - IA64 - JVM crashes on Itanium 2 and AS3.0 box in 1.5b55 when stackoverflow occurs - JVM abort on unexpected signal - Add java runtime flag SuppressFatalErrorMessage to skip all error handling logic on fatal error. - Incorrect abstract interface semantics in JDK ValueHandler - String.getBytes() does not work on some strings larger than 16MB - UnixPrintServiceLookup should not require file permission - Bundled com.sun.image.codec.jpeg JPEG API has errors for a new type of JPEG image - Invisible applet steals focus from HTML form field (MSIE, Sun plug-in only) - J2SE NIO: eucJP-open failed to be looked up. - using defaultReadTimeout appear to retry request upon timeout - App fails w/ classnotfound exception after restoring n/w connectivity - ZipFile$ZipFileInputStream doesn't close handle to zipfile - UDP DatagramSocket close causes delayed IOException - (ch) Interrupt-signal handler improperly installed, causing random exits (lnx) - Cannot change file filter on motif look & feel - 1.4 REGRESSION: In Motif L&F JComboBox doesn't react when spacebar is pressed - ALT + I does not work with Motif L & F - test/java/text/Format/CurrencyFormat.java failed for tr_TR - 142_xx: Missing exception/error messages while using unsynchronized Collection objects concurrently - deadlock in locking of TimeZone class during a read - New Turkish currency - JarFile.getInputStream throws ClassCastException when jar file is signed - current version functionality is incorrect in online docs - normal DnD program causes "FATAL ERROR in native method" - Java 1.4.2 on RedHat Enterprise Linux 4.0 Beta-1 (32 bit) seg faults. - JVM Crashes in verifier in Tigerb64 - Problem with embedded Internet Explorer using Sun Java - classes are loaded 512 bytes at a time, slowing down applet start time - memory leak in many jni calls (NewString etc.) - Java Webstart application startup is too slow - Java Webstart incremental update fails with java.util.ZipException
57 lines
1.8 KiB
Makefile
57 lines
1.8 KiB
Makefile
# $NetBSD: Makefile,v 1.24 2005/04/18 15:39:04 jschauma Exp $
|
|
|
|
# Note: Regen distinfo with SUN_JRE14_USE_JCE=YES
|
|
|
|
DISTNAME= j2re-1_4_2_08-linux-i586
|
|
PKGNAME= sun-jre14-2.8
|
|
PKGREVISION= # none
|
|
MASTER_SITES= # empty
|
|
|
|
COMMENT= Sun's Java(tm) 2 Runtime Environment 1.4.2
|
|
|
|
SHORT= JRE
|
|
|
|
WRKSRC= ${WRKDIR}/j2re1.4.2_08
|
|
USE_PKGINSTALL= yes
|
|
JAVA_WRAPPERS= java keytool orbd policytool rmid rmiregistry \
|
|
servertool tnameserv
|
|
OWN_DIRS= ${JAVA_HOME}
|
|
OWN_DIRS+= ${JAVA_HOME}/lib
|
|
OWN_DIRS+= ${JAVA_HOME}/lib/applet
|
|
OWN_DIRS+= ${JAVA_HOME}/lib/images
|
|
OWN_DIRS+= ${JAVA_HOME}/lib/images/cursors
|
|
OWN_DIRS+= ${JAVA_HOME}/lib/security
|
|
SFILES= content-types.properties flavormap.properties
|
|
SFILES+= font.properties.Redhat6.1 font.properties
|
|
SFILES+= font.properties.ja.Redhat6.1 font.properties.ja.Redhat6.2
|
|
SFILES+= font.properties.ja.Turbo font.properties.ja.Turbo6.0
|
|
SFILES+= font.properties.ja font.properties.zh.Turbo
|
|
SFILES+= images/cursors/cursors.properties i386/jvm.cfg
|
|
SFILES+= logging.properties psfont.properties.ja
|
|
SFILES+= psfontj2d.properties security/java.security
|
|
SUPPORT_FILES= # empty
|
|
.for FILE in ${SFILES}
|
|
SUPPORT_FILES+= ${JAVA_HOME}/lib/${FILE}.default ${JAVA_HOME}/lib/${FILE}
|
|
.endfor
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
BUILD_DEFS+= SUN_JRE14_USE_JCE
|
|
PLIST_SRC= ${WRKDIR}/PLIST
|
|
|
|
.if !empty(SUN_JRE14_USE_JCE:M[Yy][Ee][Ss])
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} jce_policy-1_4_2.zip
|
|
.endif
|
|
|
|
do-configure:
|
|
cd ${WRKSRC}/lib; for file in ${SFILES}; do \
|
|
${MV} -f $$file $$file.default; \
|
|
done
|
|
.if !empty(SUN_JRE14_USE_JCE:M[Yy][Ee][Ss])
|
|
cd ${WRKDIR}/jce ; pax -rw -pe -v . ${WRKSRC}/lib/security
|
|
${SED} 's/@SUN_JRE14_USE_JCE@//' ${PKGDIR}/PLIST > ${PLIST_SRC}
|
|
.else
|
|
${SED} '/@SUN_JRE14_USE_JCE@/d' ${PKGDIR}/PLIST > ${PLIST_SRC}
|
|
.endif
|
|
|
|
.include "../../lang/sun-jre14/Makefile.common"
|