blob: 4f7d0c232244a574340e33ccfabecd0975af9a1e (
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
|
# $NetBSD: Makefile,v 1.30 2004/01/02 16:56:01 jschauma Exp $
DISTNAME= j2re-1_3_1_09-linux-i586
PKGNAME= sun-jre13-1.0.9
WRKSRC= ${WRKDIR}/jre1.3.1_09
MASTER_SITES= # empty
COMMENT= Sun's Java(tm) Runtime Environment 1.3.1
SHORT= JRE
USE_PKGINSTALL= yes
OWN_DIRS= ${PREFIX}
OWN_DIRS+= ${PREFIX}/lib
OWN_DIRS+= ${PREFIX}/lib/images
OWN_DIRS+= ${PREFIX}/lib/images/cursors
OWN_DIRS+= ${PREFIX}/lib/security
SFILES= content-types.properties flavormap.properties
SFILES+= font.properties font.properties.ja
SFILES+= font.properties.zh images/cursors/cursors.properties
SFILES+= jvm.cfg psfont.properties.ja
SFILES+= psfontj2d.properties security/java.security
SUPPORT_FILES= # empty
.for FILE in ${SFILES}
SUPPORT_FILES+= ${PREFIX}/lib/${FILE}.default ${PREFIX}/lib/${FILE}
.endfor
do-configure:
cd ${WRKSRC}/lib; for file in ${SFILES}; do \
${MV} -f $$file $$file.default; \
done
.include "../../lang/sun-jre13/Makefile.common"
PREFIX= ${JVM_HOME}
|