blob: 79adb3a47827863560a6e0c02695f1fe0076e90e (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-java/sun-jdk/sun-jdk-1.3.1.02.ebuild,v 1.2 2002/07/11 06:30:20 drobbins Exp $
At="j2sdk-1_3_1_02-linux-i386.bin"
S=${WORKDIR}/jdk1.3.1_02
SRC_URI=""
DESCRIPTION="Sun Java Development Kit 1.3.1"
HOMEPAGE="http://java.sun.com/j2se/1.3/download-linux.html"
DEPEND="virtual/glibc
>=dev-java/java-config-0.2.0"
RDEPEND="$DEPEND"
PROVIDE="virtual/jre-1.3
virtual/jdk-1.3
virtual/java-scheme-2"
src_unpack() {
if [ ! -f ${DISTDIR}/${At} ] ; then
die "Please download ${At} from ${HOMEPAGE}"
fi
tail +289 ${DISTDIR}/${At} > install.sfx
chmod +x install.sfx
./install.sfx
rm install.sfx
}
src_install () {
local dirs="bin include include-old 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.jar ${D}/opt/${P}/share/
if [ "`use mozilla`" ] ; then
dodir /usr/lib/mozilla/plugins
dosym /opt/${P}/jre/plugin/i386/ns600/libjavaplugin_oji.so /usr/lib/mozilla/plugins/
fi
dodir /etc/env.d/java
sed \
-e "s/@P@/${P}/g" \
-e "s/@PV@/${PV}/g" \
-e "s/@PF@/${PF}/g" \
< ${FILESDIR}/sun-jdk-${PV} \
> ${D}/etc/env.d/java/20sun-jdk-${PV}
}
pkg_postinst () {
if [ "`use mozilla`" ] ; then
einfo "The Mozilla browser plugin has been installed as /usr/lib/mozilla/plugins/libjavaplugin_oji.so"
else
einfo "To install the Java plugin for Mozilla manually, do:"
einfo "ln -s /opt/${P}/jre/plugin/i386/mozilla/libjavaplugin_oji.so /usr/lib/mozilla/plugins/"
einfo '(Make certain the directory /usr/lib/mozilla/plugins exists first)'
fi
}
|