blob: c38c95694cc2add235a83e29672b11ad63ae11cd (
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/sun-j2sdk/sun-j2sdk-1.4.1-r1.ebuild,v 1.10 2004/07/02 04:23:27 eradicator Exp $
# Maintainer: Stefan Jones <cretin@gentoo.org>
# Author: Stefan Jones <cretin@gentoo.org>
# Based on http://www.linuxfromscratch.org/~tushar/hints/javafromscratch.txt (LFS)
# By Tushar Teredesai <Tush@Yahoo.Com>
IUSE="nptl doc"
inherit java nsplugins
JAVA_PATCHES="disable-sanity-check
fix-intl-files
gcc3-syntax
glibc-2.3.1-fixes
link-jpda-2-libjvm
remove-fixed-paths
force-motif
gcc3.3-fixes"
S=${WORKDIR}/j2sdk
SRC_JAVA="j2sdk-1_4_1-src-scsl.zip"
SRC_MOZHEADERS="j2sdk-1_4_1-mozilla_headers-unix.zip"
SRC_URI=""
DESCRIPTION="Sun's J2SE Development Kit, version 1.4.1 (From sources)"
HOMEPAGE="http://wwws.sun.com/software/java2/download.html"
SLOT="0"
KEYWORDS="x86 -ppc -alpha -sparc"
LICENSE="sun-csl"
RDEPEND="virtual/libc
virtual/x11
>=dev-java/java-config-0.1.3"
DEPEND="${RDEPEND}
app-arch/cpio
app-arch/zip
app-arch/unzip
>=virtual/jdk-1.4"
PDEPEND="doc? ( =dev-java/java-sdk-docs-1.4.1* )"
PROVIDE="virtual/jre-1.4.1
virtual/jdk-1.4.1
virtual/java-scheme-2"
pkg_setup() {
#Check if we have enough space
if [ `df -P ${PORTAGE_TMPDIR}/portage/ | tail -n 1 | awk '{ print $4 }'` -le 2597152 ] ; then
eerror "You need about 2.5G of disk space to compile this at ${PORTAGE_TMPDIR}/portage,"
eerror "it seems you don't have that much, quitting, sorry!"
die "Not enough disk space"
fi
#Check the Current java-version ~ 1.4 and is jdk
JAVAC=`java-config --javac`
if [ -z $JAVAC ] ; then
eerror "Set java-config to use a jdk not a jre"
die "The version of java set by java-config doesn't contain javac"
fi
if [ `java-config --java-version 2>&1 | grep "1\.4\." | wc -l` -lt 1 ] ; then
eerror "JDK is too old, >= 1.4 is required"
die "The version of jdk pointed to by java-config is not >=1.4"
fi
}
src_unpack() {
die_flag=""
if [ ! -f ${DISTDIR}/${SRC_MOZHEADERS} ] ; then
eerror "Please download ${SRC_MOZHEADERS} from ${HOMEPAGE} to ${DISTDIR}"
die_flag=1
fi
if [ ! -f ${DISTDIR}/${SRC_JAVA} ] ; then
eerror "Please download ${SRC_JAVA} from ${HOMEPAGE} to ${DISTDIR}"
die_flag=1
fi
[ ! -z ${die_flag} ] && die "Some source files were not found"
mkdir ${S}
cd ${S}
unpack ${SRC_JAVA}
mkdir mozilla
cd mozilla
unpack ${SRC_MOZHEADERS}
use nptl && JAVA_PATCHES="$JAVA_PATCHES pthread"
cd ${S}
for patch in $JAVA_PATCHES ; do
einfo "Applying patch ${patch}"
cat ${FILESDIR}/${PV}/j2sdk-${PV}-${patch}.patch | patch -p1 || die "Failed to apply ${patch}"
done
}
src_compile () {
cd ${S}
unset CLASSPATH JAVA_HOME JAVAC
# Otherwise the command:
# (cd /var/tmp/portage/sun-j2sdk-1.4.0-r1/work/j2sdk/control/build/linux-i386/j2re-image; tar cf - .) | \
# (cd /var/tmp/portage/sun-j2sdk-1.4.0-r1/work/j2sdk/control/build/linux-i386/j2sdk-image/jre; tar xf -)
# Will fail, you have been warned!!!! There are NO sandbox violations anyway
LD_PRELOAD_SAVE=$LD_PRELOAD
unset LD_PRELOAD
# Any CFLAGS will cause the build to fail!
# If you don't believe me ...
export OTHER_CFLAGS=${CFLAGS}
export OTHER_CXXFLAGS=${CXXFLAGS}
unset CFLAGS CXXFLAGS LDFLAGS
export ALT_MOZILLA_PATH="${S}/mozilla"
export ALT_BOOTDIR=`java-config --jdk-home`
export ALT_CACERTS_FILE=${ALT_BOOTDIR}/jre/lib/security/cacerts
export ALT_MOTIF_DIR="${S}/motif"
export ALT_DEVTOOLS_PATH="/usr/bin"
export MILESTONE="gentoo"
export BUILD_NUMBER=`date +%s`
export LIBS="-lstdc++"
export OTHER_LDFLAGS="-lpthread"
export INSANE=true
export MAKE_VERBOSE=true
export DEV_ONLY=true
export USRBIN_PATH=""
cd ${S}/control/make
# MUST use make, we DONT want any -j options!
JOBS=`echo "${MAKEOPTS}" | sed -e "s/.*-j\([0-9]\+\).*/\1/"`
if [ -z "$JOBS" ]; then
JOBS=1
fi
make HOTSPOT_BUILD_JOBS=${JOBS} || die
export LD_PRELOAD=$LD_PRELOAD_SAVE
}
src_install () {
dodir /opt/${P}
cd ${S}/control/build/linux-*/j2sdk-image
local dirs="bin include jre lib"
dodir /opt/${P}
for i in $dirs ; do
cp -a $i ${D}/opt/${P}/
done
dodoc COPYRIGHT README LICENSE
dohtml README.html
doman man/man1/*.1
dodir /opt/${P}/share/
cp -a demo src.zip ${D}/opt/${P}/share/
chown -R root:root ${D}/opt/${P}
inst_plugin /opt/${P}/jre/plugin/i386/ns610/libjavaplugin_oji.so
set_java_env ${FILESDIR}/${VMHANDLE}
}
pkg_postinst () {
# Set as default VM if none exists
java_pkg_postinst
}
|