d70e59adae
Bugs fixed in 1.3.1_19: 6420685 ResourceMark breaks growable array 6180969 JVM 1.3.1 crash due to fatal error in exception handler 6353457 Long Integer value changes in unpredictable manner with Deoptimization(1.3.1_06) 6359662 OutOfMemoryError with Object allocation in JDK1.3.1_09 6358532 HttpURLConnection.disconnect doesn?t really do the job 6425120 Support tzdata2006g 6276622 1.3.1_16 uninstaller removing TreatAs key for 1.5.0_02 4980600 Syntax used when invoking coreutils does not conform to POSIX 1003.1-2001 6292347 unexpected packet is sent in java.util.ResourceBundle.getBundle Bugs fixed in 1.3.1_18: 6391777 JDK 1.3 TZ fix required - Related to SUN BASE RFE 6332148 6317483 Beans extending JPanel class are not released when created via 1.3.1 ActiveX bridge
31 lines
802 B
Makefile
31 lines
802 B
Makefile
# $NetBSD: Makefile,v 1.40 2006/09/25 08:00:31 ghen Exp $
|
|
|
|
DISTNAME= j2sdk-1_3_1_19-linux-i586
|
|
PKGNAME= sun-jdk13-1.0.19
|
|
MASTER_SITES= # empty
|
|
|
|
COMMENT= Sun's Java(tm) Development Kit 1.3.1
|
|
|
|
SHORT= JDK
|
|
|
|
DEPENDS+= sun-jre13>=1.0.19:../../lang/sun-jre13
|
|
|
|
JAVA_CLASSPATH= ${JAVA_HOME}/src.jar
|
|
JAVA_WRAPPERS= appletviewer extcheck idlj jar jarsigner \
|
|
javac javadoc javah javap jdb rmic serialver
|
|
WRKSRC= ${WRKDIR}/jdk1.3.1_19
|
|
|
|
# Remove parts that are in common with the JRE.
|
|
#
|
|
post-extract:
|
|
common=`${AWK} '/^#.*/ { next } /^$$/ { next } { print }' ${FILESDIR}/common`; \
|
|
cd ${WRKSRC}; for i in $$common; do \
|
|
if [ -d $$i ]; then \
|
|
${RM} -rf $$i; \
|
|
else \
|
|
${RM} -f $$i; \
|
|
fi; \
|
|
done
|
|
${LN} -sf . ${WRKSRC}/jre
|
|
|
|
.include "../../lang/sun-jre13/Makefile.common"
|