Changes in 1.6.0_20 (6u20) * OlsonData 2010b * A Java Network Launch Protocol (JNLP) file without a codebase parameter, such as the following, will no longer work with the Java SE 6 update 20 release. <jnlp spec="0.2 1.0" href="draw.jnlp"> This means that developers must specify the codebase parameter in a JNLP file. See the following example: <jnlp spec="0.2 1.0" codebase="http://java.sun.com/javase/technologies/desktop/javawebstart/apps/" href="draw.jnlp"> * This release contains fixes for security vulnerabilities. For more information, please see Oracle Security Alert for CVE-2010-0886 Changes in 1.6.0_19 (6u19) * OlsonData 2010b * Root Certificates * Ensuring Application and Applet Security when Mixing Signed and Unsigned Code * Interim Fix for the Transport Layer Security (TLS) Man-in-the-Middle Attack * Bug Fixes Changes in 1.6.0_18 (6u18) * OlsonData 2009s * VisualVM 1.2 * Java DB 10.5.3.0 * Performance Improvements * Deployment Updates * JSR-173 StAX 1.2 API Upgrade * Bug Fixes
51 lines
1.4 KiB
Makefile
51 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.19 2010/06/06 09:51:49 obache Exp $
|
|
|
|
DISTNAME= jdk-6u20-linux-${DIST_ARCH}
|
|
PKGNAME= sun-jdk6-6.0.20
|
|
MASTER_SITES= # empty
|
|
|
|
LICENSE= sun-jdk6-license
|
|
|
|
DEPENDS+= ${PKGNAME_NOREV:S/jdk/jre/}*:../../lang/sun-jre6
|
|
|
|
WRKSRC= ${WRKDIR}/jdk1.6.0_20
|
|
JAVA_WRAPPERS= appletviewer apt extcheck idlj jar jarsigner \
|
|
javac javadoc javah javap jdb rmic serialver
|
|
|
|
MAKE_JOBS_SAFE= no
|
|
|
|
.include "../../lang/sun-jre6/Makefile.common"
|
|
|
|
# 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
|
|
|
|
pre-install:
|
|
# These files are generated the *first* time the package is built
|
|
${RM} -f ${WRKSRC}/register.html
|
|
${RM} -f ${WRKSRC}/register_ja.html
|
|
${RM} -f ${WRKSRC}/register_zh_CN.html
|
|
${CHMOD} -x \
|
|
${WRKSRC}/db/bin/NetworkServerControl.bat \
|
|
${WRKSRC}/db/bin/dblook.bat \
|
|
${WRKSRC}/db/bin/derby_common.bat \
|
|
${WRKSRC}/db/bin/ij.bat \
|
|
${WRKSRC}/db/bin/setEmbeddedCP.bat \
|
|
${WRKSRC}/db/bin/setNetworkClientCP.bat \
|
|
${WRKSRC}/db/bin/setNetworkServerCP.bat \
|
|
${WRKSRC}/db/bin/startNetworkServer.bat \
|
|
${WRKSRC}/db/bin/stopNetworkServer.bat \
|
|
${WRKSRC}/db/bin/sysinfo.bat \
|
|
${WRKSRC}/sample/scripting/scriptpad/src/scripts/memory.sh
|
|
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|