blob: d45d3e695ae5a8c11ea4cda886a1436f67571a15 (
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.32 2004/01/20 12:19:18 agc Exp $
DISTNAME= j2re-1_3_1_10-linux-i586
PKGNAME= sun-jre13-1.0.10
MASTER_SITES= # empty
COMMENT= Sun's Java(tm) Runtime Environment 1.3.1
SHORT= JRE
WRKSRC= ${WRKDIR}/jre1.3.1_10
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}
|