diff options
author | Joshua Nichols <nichoj@gentoo.org> | 2006-01-06 06:18:27 +0000 |
---|---|---|
committer | Joshua Nichols <nichoj@gentoo.org> | 2006-01-06 06:18:27 +0000 |
commit | 7ededd85a20b83254bc15f1208c84e1d06272af0 (patch) | |
tree | 11e6e12447a76a9c7bc3a11a008f175b5051619f /dev-java/ibm-jdk-bin/ibm-jdk-bin-1.5.0.ebuild | |
parent | Cleaned up package.mask's for Java 1.5 packages. (diff) | |
download | gentoo-2-7ededd85a20b83254bc15f1208c84e1d06272af0.tar.gz gentoo-2-7ededd85a20b83254bc15f1208c84e1d06272af0.tar.bz2 gentoo-2-7ededd85a20b83254bc15f1208c84e1d06272af0.zip |
Version bump (bug #115619).
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'dev-java/ibm-jdk-bin/ibm-jdk-bin-1.5.0.ebuild')
-rw-r--r-- | dev-java/ibm-jdk-bin/ibm-jdk-bin-1.5.0.ebuild | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/dev-java/ibm-jdk-bin/ibm-jdk-bin-1.5.0.ebuild b/dev-java/ibm-jdk-bin/ibm-jdk-bin-1.5.0.ebuild new file mode 100644 index 000000000000..808fa93c5749 --- /dev/null +++ b/dev-java/ibm-jdk-bin/ibm-jdk-bin-1.5.0.ebuild @@ -0,0 +1,102 @@ +# Copyright 1999-2006 Gentoo Foundation +# 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.5.0.ebuild,v 1.1 2006/01/06 06:18:27 nichoj Exp $ + +inherit java eutils + +DESCRIPTION="IBM Java Development Kit ${PV}" +HOMEPAGE="http://www-106.ibm.com/developerworks/java/jdk/" +SRC_URI="x86? ( ibm-java2-sdk-50-linux-i386.tgz ) + amd64? ( ibm-java2-sdk-50-linux-x86_64.tgz ) + ppc? ( ibm-java2-sdk-50-linux-ppc.tgz ) + javacomm? ( + x86? ( ibm-java2-javacomm-50-linux-i386.tgz ) + amd64? ( ibm-java2-javacomm-50-linux-x86_64.tgz ) + ppc? ( ibm-java2-javacomm-50-linux-ppc.tgz ) + )" +# ppc64? ( ibm-java2-sdk-50-linux-ppc64.tgz ) +# ppc64? ( ibm-java2-javacomm-50-linux-ppc64.tgz ) +PROVIDE="virtual/jdk + virtual/jre" +SLOT="1.5" +LICENSE="IBM-J1.5" +KEYWORDS="~amd64 ~ppc ~x86 -*" +RESTRICT="fetch" + +DEPEND="virtual/libc + >=dev-java/java-config-0.2.5 + X? ( virtual/x11 )" +RDEPEND="${DEPEND}" + +IUSE="X javacomm browserplugin mozilla" + +if use x86; then + S="${WORKDIR}/ibm-java2-i386-50" +elif use amd64; then + S="${WORKDIR}/ibm-java2-x86_64-50" +elif use ppc; then + S="${WORKDIR}/ibm-java2-ppc-50" +elif use ppc64; then + S="${WORKDIR}/ibm-java2-ppc64-50" +fi + + +pkg_nofetch() { + einfo "Due to license restrictions, we cannot redistribute or fetch the distfiles" + einfo "Please visit: ${HOMEPAGE}" + einfo "Download: ${A}" + einfo "Place the file in: ${DISTDIR}" + einfo "Rerun emerge" +} + +src_compile() { :; } + +src_install() { + # Copy all the files to the designated directory + mkdir -p ${D}opt/${P} + cp -pR ${S}/{bin,jre,lib,include} ${D}opt/${P}/ + + mkdir -p ${D}/opt/${P}/share + cp -pPR ${S}/{demo,src.jar} ${D}opt/${P}/share/ + + # setting the ppc stuff + #if use ppc; then + # dosed s:/proc/cpuinfo:/etc//cpuinfo:g /opt/${P}/jre/bin/libjitc.so + # dosed s:/proc/cpuinfo:/etc//cpuinfo:g /opt/${P}/jre/bin/libjitc_g.so + # insinto /etc + # doins ${FILESDIR}/cpuinfo + #fi + + if ( use browserplugin || use mozilla ) && ! use amd64 && ! use ppc64; then + local plugin + if use x86; then + plugin="libjavaplugin_ojigtk2.so" + elif use ppc; then + plugin="libjavaplugin_oji.so" + fi + install_mozilla_plugin /opt/${P}/jre/bin/${plugin} + fi + + dohtml -a html,htm,HTML -r docs + dodoc ${S}/COPYRIGHT + + set_java_env ${FILESDIR}/${VMHANDLE} + +} + +pkg_postinst() { + java_pkg_postinst + if ! use X; then + echo + 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." + fi + if ! use browserplugin && use mozilla; then + ewarn + ewarn "The 'mozilla' useflag to enable the java browser plugin for applets" + ewarn "has been renamed to 'browserplugin' please update your USE" + fi + +} |