diff options
author | Brandon Low <lostlogic@gentoo.org> | 2004-03-19 21:22:18 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2004-03-19 21:22:18 +0000 |
commit | 66badd5ac95b46edfa5ae79d306c9e531305dce2 (patch) | |
tree | 725b07ed4abecd2f4d21f2cafccd65de921e8373 /dev-java/jai/jai-1.1.2-r2.ebuild | |
parent | Added -p to mkdir. Closing bug #43427. Thanks, dad... ;] (diff) | |
download | historical-66badd5ac95b46edfa5ae79d306c9e531305dce2.tar.gz historical-66badd5ac95b46edfa5ae79d306c9e531305dce2.tar.bz2 historical-66badd5ac95b46edfa5ae79d306c9e531305dce2.zip |
Fix the mess created in -r1, now installs to the correct part of the selected JRE or JDK home
Diffstat (limited to 'dev-java/jai/jai-1.1.2-r2.ebuild')
-rw-r--r-- | dev-java/jai/jai-1.1.2-r2.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/dev-java/jai/jai-1.1.2-r2.ebuild b/dev-java/jai/jai-1.1.2-r2.ebuild new file mode 100644 index 000000000000..5a6bd4f929cd --- /dev/null +++ b/dev-java/jai/jai-1.1.2-r2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/jai/jai-1.1.2-r2.ebuild,v 1.1 2004/03/19 21:22:18 lostlogic Exp $ + +DESCRIPTION="JAI is a class library for managing images." +HOMEPAGE="http://java.sun.com/products/java-media/jai/" +SRC_URI="jai-1_1_2-lib-linux-i586-jdk.bin" +LICENSE="sun-bcla-jai" +SLOT="0" +KEYWORDS="~x86 ~sparc ~alpha" +DEPEND="" +RDEPEND=">=virtual/jdk-1.3" +IUSE="" +RESTRICT="fetch" +S="${WORKDIR}" + +pkg_nofetch() { + einfo "Please download ${SRC_URI} from ${HOMEPAGE} and place it in ${DISTDIR}" +} + +src_unpack() { + #Search for the ELF Header + testExp=`echo -e "\177\105\114\106\001\001\001"` + startAt=`grep -aonm 1 ${testExp} ${DISTDIR}/${SRC_URI} | cut -d: -f1` + tail -n +${startAt} ${DISTDIR}/${SRC_URI} > install.sfx + chmod +x install.sfx + ./install.sfx || die + rm install.sfx +} + +src_install() { + start=${D} + jre="" + java_home="$(java-config --jdk-home)" + if [ ! -z java_home ]; then + jre="jre/" + else + java_home="$(java-config --jre-home)" + if [ -z java_home ]; then + die "You must have a JVM selected in order to install JAI" + fi + fi + einfo "Installing JAI into current JAVA home: ${java_home}" + dodir ${java_home}/${jre} + cp -a ${S}/jre/* ${D}/${java_home}/${jre} + dodoc COPYRIGHT-jai.txt README-jai.txt +} |