blob: 8db380c995ebdd6615f84d61837e93ebb2d40d2a (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/sun-jdk/sun-jdk-1.3.1.13.ebuild,v 1.13 2005/10/18 20:22:01 agriffis Exp $
inherit java eutils
MY_PV=${PV%.*}_${PV##*.}
MY_P=jdk${MY_PV}
MY_PVB=${PV%.*}
At="j2sdk-${PV//./_}-linux-i586.bin"
S="${WORKDIR}/${MY_P}"
SRC_URI="${At}"
DESCRIPTION="Sun Java Development Kit"
HOMEPAGE="http://java.sun.com/j2se/1.3/"
DEPEND="virtual/libc
>=dev-java/java-config-0.2.7
doc? ( =dev-java/java-sdk-docs-1.3.1* )"
RDEPEND="sys-libs/lib-compat"
PROVIDE="virtual/jre
virtual/jdk"
LICENSE="sun-bcla-java-vm"
SLOT="1.3"
KEYWORDS="x86 -*"
RESTRICT="fetch"
IUSE="doc browserplugin nsplugin mozilla"
# this is needed for proper operating under a PaX kernel without activated grsecurity acl
CHPAX_CONSERVATIVE_FLAGS="pemsv"
DOWNLOAD_URL="http://javashoplm.sun.com/ECom/docs/Welcome.jsp?StoreId=22&PartDetailId=j2sdk-${MY_PV}-oth-JPR&SiteId=JSC&TransactionId=noreg"
pkg_nofetch() {
einfo "Please download ${At} from:"
einfo ${DOWNLOAD_URL}
einfo "(SDK 32-bit/64-bit for Windows/Linux/Solaris SPARC 32-bit for Solaris x86, then select download Linux Self-extracting."
einfo "and move it to ${DISTDIR}"
}
src_unpack() {
if [ ! -r ${DISTDIR}/${At} ]; then
eerror "cannot read ${At}. Please check the permission and try again."
die
fi
#Search for the ELF Header
testExp=`echo -e "\177\105\114\106\001\001\001"`
startAt=`grep -aonm 1 ${testExp} ${DISTDIR}/${At} | cut -d: -f1`
tail -n +${startAt} ${DISTDIR}/${At} > install.sfx
chmod +x install.sfx
./install.sfx
rm install.sfx
sed "s/head -1/head -n 1/" -i ${MY_P}/bin/.java_wrapper
}
src_install() {
local dirs="bin include include-old jre lib man"
dodir /opt/${P}
for i in ${dirs} ; do
if [ "${i}" == "bin" ] ; then
dodir /opt/${P}/${i}
cp -dPR ${i}/.java_wrapper ${D}/opt/${P}/bin/
cp -dPR ${i}/* ${D}/opt/${P}/bin/
elif [ "${i}" == "jre" ] ; then
dodir /opt/${P}/${i}
dodir /opt/${P}/${i}/bin
cp -dPR ${i}/bin/.java_wrapper ${D}/opt/${P}/${i}/bin/
cp -dPR ${i}/bin/* ${D}/opt/${P}/${i}/bin/
cp -dPR ${i}/CHANGES \
${i}/COPYRIGHT \
${i}/ControlPanel.html \
${i}/LICENSE \
${i}/README \
${i}/Welcome.html \
${i}/lib \
${i}/plugin \
${D}/opt/${P}/${i}/
else
cp -dPR ${i} ${D}/opt/${P}/
fi
done
dodoc COPYRIGHT README LICENSE
dohtml README.html
dodir /opt/${P}/share/
cp -a demo src.jar ${D}/opt/${P}/share/
if use nsplugin || # global useflag for netscape-compat plugins
use browserplugin || # deprecated but honor for now
use mozilla; then # wrong but used to honor it
install_mozilla_plugin /opt/${P}/jre/plugin/i386/ns600/libjavaplugin_oji.so
fi
set_java_env ${FILESDIR}/${VMHANDLE} || die
}
pkg_postinst () {
# Set as default VM if none exists
java_pkg_postinst
if ! use nsplugin && ( use browserplugin || use mozilla ); then
echo
ewarn "The 'browserplugin' and 'mozilla' useflags will not be honored in"
ewarn "future jdk/jre ebuilds for plugin installation. Please"
ewarn "update your USE to include 'nsplugin'."
fi
# if chpax is on the target system, set the appropriate PaX flags
# this will not hurt the binary, it modifies only unused ELF bits
# but may confuse things like AV scanners and automatic tripwire
if has_version sys-apps/chpax
then
echo
einfo "setting up conservative PaX flags for jar, javac and java"
for paxkills in "jar" "javac" "java" "javah" "javadoc"
do
chpax -${CHPAX_CONSERVATIVE_FLAGS} /opt/${P}/bin/$paxkills
done
# /opt/sun-jdk-1.3.1.09/jre/bin/java_vm
chpax -${CHPAX_CONSERVATIVE_FLAGS} /opt/${P}/jre/bin/java_vm
einfo "you should have seen lots of chpax output above now"
ewarn "make sure the grsec ACL contains those entries also"
ewarn "because enabling it will override the chpax setting"
ewarn "on the physical files - help for PaX and grsecurity"
ewarn "can be given by #gentoo-hardened + hardened@gentoo.org"
fi
echo
eerror "Some parts of Sun's JDK require X11 to be installed."
eerror "Be careful which Java libraries you attempt to use."
}
|