blob: ca1f1edcebc139cb8962f4bb8e3cc6e37fa1a20d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# $NetBSD: Makefile,v 1.17 2009/08/22 22:46:01 abs Exp $
DISTNAME= jdk-6u16-linux-${DIST_ARCH}
#PKGREVISION= 1
PKGNAME= sun-jdk6-6.0.16
MASTER_SITES= # empty
DOWNLOAD_NAME= JDK 6u12
LICENSE= sun-jdk6-license
DEPENDS+= ${PKGNAME_NOREV:S/jdk/jre/}*:../../lang/sun-jre6
WRKSRC= ${WRKDIR}/jdk1.6.0_16
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"
|