3d3dabe9f5
Java SE 6 Update 24 * OlsonData 2010o * Java DB 10.6.2.1 * Bug Fixes, include following security fix. CVE-2010-4422 CVE-2010-4447 CVE-2010-4448 CVE-2010-4450 CVE-2010-4451 CVE-2010-4452 CVE-2010-4454 CVE-2010-4462 CVE-2010-4463 CVE-2010-4465 CVE-2010-4466 CVE-2010-4467 CVE-2010-4468 CVE-2010-4469 CVE-2010-4470 CVE-2010-4471 CVE-2010-4472 CVE-2010-4473 CVE-2010-4474 CVE-2010-4475 CVE-2010-4476 Java SE 6 Update 23 * OlsonData 2010l * Java Hotspot VM 19.0 * Java VisualVM 1.3.1 * Menu Item Corrections for Right-to-Left Languages * Additional Languages Support in Linux Systems * Bug Fixes
51 lines
1.4 KiB
Makefile
51 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.21 2011/02/21 07:48:19 obache Exp $
|
|
|
|
DISTNAME= jdk-6u24-linux-${DIST_ARCH}
|
|
PKGNAME= sun-jdk6-6.0.24
|
|
MASTER_SITES= # empty
|
|
|
|
LICENSE= sun-jdk6-license
|
|
|
|
DEPENDS+= ${PKGNAME_NOREV:S/jdk/jre/}*:../../lang/sun-jre6
|
|
|
|
WRKSRC= ${WRKDIR}/jdk1.6.0_24
|
|
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"
|