diff options
author | Vlastimil Babka <caster@gentoo.org> | 2009-04-17 20:07:20 +0000 |
---|---|---|
committer | Vlastimil Babka <caster@gentoo.org> | 2009-04-17 20:07:20 +0000 |
commit | 7c9db13c2c7e16b3a72f92a3001547bb0a6c0057 (patch) | |
tree | e45de8fdc4fa64aed1e48d121e5dd2addab9700c /dev-lang/helium/helium-1.2-r1.ebuild | |
parent | Migrate to gen-2 java eclass, bug #258335. (diff) | |
download | historical-7c9db13c2c7e16b3a72f92a3001547bb0a6c0057.tar.gz historical-7c9db13c2c7e16b3a72f92a3001547bb0a6c0057.tar.bz2 historical-7c9db13c2c7e16b3a72f92a3001547bb0a6c0057.zip |
Migrate to gen-2 java eclasses, bug #161426.
Package-Manager: portage-2.2_rc30/cvs/Linux x86_64
Diffstat (limited to 'dev-lang/helium/helium-1.2-r1.ebuild')
-rw-r--r-- | dev-lang/helium/helium-1.2-r1.ebuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/dev-lang/helium/helium-1.2-r1.ebuild b/dev-lang/helium/helium-1.2-r1.ebuild index f004fd46c6d2..a441f82c5c34 100644 --- a/dev-lang/helium/helium-1.2-r1.ebuild +++ b/dev-lang/helium/helium-1.2-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/helium/helium-1.2-r1.ebuild,v 1.9 2007/10/31 13:22:01 dcoutts Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/helium/helium-1.2-r1.ebuild,v 1.10 2009/04/17 20:07:20 caster Exp $ -inherit eutils java-pkg +inherit eutils java-pkg-2 DESCRIPTION="Helium (for learning Haskell)" HOMEPAGE="http://www.cs.uu.nl/helium" @@ -17,7 +17,7 @@ IUSE="readline" DEPEND="<dev-lang/ghc-6.4 !>=dev-lang/ghc-6.4 readline? ( sys-libs/readline )" -RDEPEND="virtual/jdk +RDEPEND=">=virtual/jre-1.4 dev-libs/gmp readline? ( sys-libs/readline )" @@ -30,6 +30,8 @@ src_unpack() { if use readline; then epatch ${FILESDIR}/${P}-readline.patch fi + + cp "${DISTDIR}/Hint.jar" "${WORKDIR}" } src_compile() { @@ -57,7 +59,7 @@ src_install() { demodir=${D}/usr/lib/helium/demo \ install || die "make failed" # install hint - java-pkg_dojar ${DISTDIR}/Hint.jar + java-pkg_dojar "${WORKDIR}/Hint.jar" # create wrappers dobin ${FILESDIR}/helium-wrapper dosym /usr/bin/helium-wrapper /usr/bin/helium |