summaryrefslogtreecommitdiff
blob: dffda71bef196bfa519f9a5a46c319f6ccf934b4 (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
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/ibm-jdk-bin/ibm-jdk-bin-1.4.1.ebuild,v 1.1 2004/04/28 19:51:43 sejo Exp $

IUSE="doc"

inherit java nsplugins

S="${WORKDIR}/j2sdk${PV}"
DESCRIPTION="IBM Java Development Kit ${PV}"
SRC_URI="ppc?(mirror://IBMJava2-SDK-141.ppc.tgz)
	x86?(mirror://IBMJava2-SDK-141.tgz)"
PROVIDE="virtual/jdk-1.4.1
	virtual/jre-1.4.1
	virtual/java-scheme-2"
SLOT="1.4"
LICENSE="IBM-J1.4"
KEYWORDS="~ppc ppc"


DEPEND="virtual/glibc
	>=dev-java/java-config-0.2.5
	doc? (=dev-java/java-sdk-docs-1.4.1*)
	X? (virtual/x11)"
RDEPEND="sys-libs/lib-compat"


if [ `use ppc` ]; then
	S=${WORKDIR}/IBMjava2-ppc-141
else
	S=${WORKDIR}/IBMJava2-141
fi;

# No compilation needed!
src_compile() { :; }

src_install() {
	# Copy all the files to the designated directory 
	dodir ${D}opt
	dodir ${D}opt/${P}
	cp -dpR ${S}/{bin,jre,lib,include} ${D}opt/${P}/

	dodir ${D}/opt/${P}/share
	cp -a ${S}/{demo,src.jar} ${D}opt/${P}/share/
	
	# setting the ppc stuff
	if [ `use ppc` ]; then
		dosed s:/proc/cpuinfo:/etc//cpuinfo:g ${D}opt/${P}/jre/bin/libjitc.so
		dosed s:/proc/cpuinfo:/etc//cpuinfo:g ${D}opt/${P}/jre/bin/libjitc_g.so
		insinto ${D}/etc
		doins ${FILESDIR}/cpuinfo
	fi

	dohtml -a html,htm,HTML -r docs
	dodoc ${S}/docs/COPYRIGHT

	inst_plugin /opt/${P}/jre/bin/libjavaplugin_oji.so

	set_java_env ${FILESDIR}/${VMHANDLE} 
	
}

pkg_postinst() {

        #Thanks to Douglas Pollock <douglas.pollock@magma.ca> for this
        #comment found on the sun-jdk 1.2.2 ebuild that he sent.
        if [ !`use X` ] ; then
                einfo "********************************************************"
                eerror "You're not using X so its possible that you dont have"
                eerror "a X server installed, please read the following warning: "
                eerror "Some parts of IBM JDK require XFree86 to be installed."
                eerror "Be careful which Java libraries you attempt to use."
                einfo "********************************************************"
                echo 
        fi
        einfo "******************************************************"
        einfo " After installing ${P} this"
        einfo " was set as the default JVM to run."
        einfo " When finished please run the following so your"
        einfo " enviroment gets updated."
        eerror "    /usr/sbin/env-update && source /etc/profile"
        einfo " Or use java-config program to set your preferred VM"
        einfo "******************************************************"

        echo -ne "\a" ; sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null
        einfo " After installing ${P} this"
        einfo " was set as the default JVM to run."
        einfo " When finished please run the following so your"
        einfo " enviroment gets updated."
        eerror "    /usr/sbin/env-update && source /etc/profile"
        einfo " Or use java-config program to set your preferred VM"
        einfo "******************************************************"

        echo -ne "\a" ; sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null
        echo -ne "\a" ; sleep 1
        echo -ne "\a" ; sleep 0.1 &>/dev/null ; sleep 0,1 &>/dev/null
        echo -ne "\a" ; sleep 1
        sleep 8
}