blob: 6ad4ab232134ac42d0d3068f95ef5ce90d4c191f (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
# $NetBSD: Makefile,v 1.49 2008/05/26 02:13:21 joerg Exp $
# Note: Regen distinfo with PKG_DEFAULT_OPTIONS+=sun-jre-jce
DISTNAME= j2re-1_4_2_17-linux-${DIST_ARCH}
PKGNAME= sun-jre14-2.17
MASTER_SITES= # empty
COMMENT= Sun's Java(tm) 2 Runtime Environment 1.4.2
SHORT= JRE
USE_TOOLS+= pax
WRKSRC= ${WRKDIR}/j2re1.4.2_17
JAVA_WRAPPERS= java keytool orbd policytool rmid rmiregistry \
servertool tnameserv
LICENSE= sun-jre14-license
.include "../../lang/sun-jre14/Makefile.common"
REQD_DIRS= ${JAVA_HOME}
REQD_DIRS+= ${JAVA_HOME}/lib
REQD_DIRS+= ${JAVA_HOME}/lib/applet
REQD_DIRS+= ${JAVA_HOME}/lib/images
REQD_DIRS+= ${JAVA_HOME}/lib/images/cursors
REQD_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
CONF_FILES= # empty
.for FILE in ${SFILES}
CONF_FILES+= ${JAVA_HOME}/lib/${FILE}.default ${JAVA_HOME}/lib/${FILE}
.endfor
PKG_OPTIONS_VAR= PKG_OPTIONS.sun-jre14
PKG_SUPPORTED_OPTIONS= sun-jre-jce
.include "../../mk/bsd.options.mk"
PLIST_VARS+= jce
.if !empty(PKG_OPTIONS:Msun-jre-jce)
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} jce_policy-1_4_2.zip
PLIST.jce= yes
END_MESSAGE= \
"" \
"The file jce_policy-1_4_2.zip must be fetched into:" \
" ${DISTDIR}/jce_policy-1_4_2.zip" \
"" \
"Under 'Other Downloads' / 'Java Cryptography Extension'" \
"click 'Download' and choose the .zip file."
.endif
# Some of the binaries require libX11, so ensure that requirement is
# satisfied when the package is installed on the native OS.
#
.if defined(EMUL_IS_NATIVE)
. if ${X11_TYPE} == "native"
. if ${EMUL_ARCH} == "x86_64"
LIBX11= ${X11PREFIX}/lib64/libX11.so.6
. else
LIBX11= ${X11PREFIX}/lib/libX11.so.6
. endif
. if !exists(${LIBX11})
PKG_FAIL_REASON+= "${LIBX11} does not exist. Please install the" \
"X11 library packages for your system."
. endif
. else
. include "../../x11/libX11/buildlink3.mk"
LIBX11= ${X11PREFIX}/lib/libX11.so.6
. endif
PLIST_SUBST+= LIBX11=
.PHONY: create-library-symlinks
post-install: create-library-symlinks
create-library-symlinks:
${RUN}${LN} -fs ${LIBX11} ${JAVA_HOME}/lib/${EMUL_ARCH}
.else
PLIST_SUBST+= LIBX11="@comment "
.endif
post-extract:
cd ${WRKSRC} && ${CHMOD} -R go-w .
do-configure:
cd ${WRKSRC}/lib; for file in ${SFILES}; do \
${MV} -f $$file $$file.default; \
done
pre-install:
.if !empty(PKG_OPTIONS:Msun-jre-jce)
cd ${WRKDIR}/jce ; pax -rw -pe -v . ${WRKSRC}/lib/security
.endif
.include "../../mk/bsd.pkg.mk"
|