blob: 8af1cd3d7c76c00bbfcd9c5f4f0cb1911c0d0071 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jrockit-jdk-bin/jrockit-jdk-bin-1.5.0.06.ebuild,v 1.2 2006/07/03 13:14:25 betelgeuse Exp $
# WARNING: This is the default VM on ia64, so treat this ebuild
# with proper care.
# The stripping of symbols seems to mess up the BEA code. Not sure why.
RESTRICT="nostrip fetch"
inherit java-vm-2 versionator
PV_MAJOR="$(get_version_component_range 1-3 ${PV})"
PV_EXTRA="$(get_version_component_range 4 ${PV})"
HOMEPAGE_PV="$(delete_all_version_separators ${PV_MAJOR})_${PV_EXTRA}"
UPSTREAM_RELEASE="26.3.0"
SRC_URI_BASE="jrockit-R${UPSTREAM_RELEASE}-jdk${PV_MAJOR}_${PV_EXTRA}-linux-"
SRC_URI="x86? ( ${SRC_URI_BASE}ia32.bin )
amd64? ( ${SRC_URI_BASE}x64.bin )"
DESCRIPTION="BEA WebLogic's J2SE Development Kit, R${UPSTREAM_RELEASE}"
HOMEPAGE="http://www.bea.com/framework.jsp?CNT=index.htm&FP=/content/products/jrockit/"
FETCH_URI="http://commerce.bea.com/products/weblogicjrockit/accept_terms50.jsp"
LICENSE="jrockit"
SLOT="1.5"
# ia64 not provided yet
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=app-arch/unzip-5.50-r1"
PROVIDE="virtual/jre
virtual/jdk"
JAVA_PROVIDE="jdbc-stdext jdbc-rowset"
JAVA_VM_NO_GENERATION1=true
pkg_nofetch() {
einfo "Please download ${A} from:"
einfo ${FETCH_URI}
einfo "and move it to ${DISTDIR}"
}
src_unpack() {
mkdir ${S}
unzip ${DISTDIR}/${A} -d ${S} || die "Failed to unpack ${A}"
cd ${S}
for z in *.zip ; do
unzip $z || die
rm $z
done
}
src_install() {
#no man in this version
local dirs="bin console include jre lib"
dodir /opt/${P}
for i in ${dirs} ; do
cp -R $i ${D}/opt/${P}/ || die
done
newdoc README.TXT README
newdoc LICENSE LICENSE
set_java_env
}
pkg_postinst () {
# Set as default VM if none exists
java-vm-2_pkg_postinst
einfo "Please review the license agreement in /usr/share/doc/${PF}/LICENSE"
einfo "If you do not agree to the terms of this license, please uninstall this package"
}
|