diff options
author | Jan Brinkmann <luckyduck@gentoo.org> | 2005-04-16 21:41:32 +0000 |
---|---|---|
committer | Jan Brinkmann <luckyduck@gentoo.org> | 2005-04-16 21:41:32 +0000 |
commit | 6ad1da518439f393c0b419022b730b75914c424e (patch) | |
tree | 584556f02178a7dc5f18dbf0bc0402e1766d8bee /dev-java/javolution/javolution-2.2.0.ebuild | |
parent | docs go in /usr/share/doc/${PF} (diff) | |
download | historical-6ad1da518439f393c0b419022b730b75914c424e.tar.gz historical-6ad1da518439f393c0b419022b730b75914c424e.tar.bz2 historical-6ad1da518439f393c0b419022b730b75914c424e.zip |
new upstream version. marked 2.2.0 stable on amd64 and x86. done some cosmetic changes and introduced support for the source useflag.
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'dev-java/javolution/javolution-2.2.0.ebuild')
-rw-r--r-- | dev-java/javolution/javolution-2.2.0.ebuild | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/dev-java/javolution/javolution-2.2.0.ebuild b/dev-java/javolution/javolution-2.2.0.ebuild index 620953cad7b8..73fda63a5aec 100644 --- a/dev-java/javolution/javolution-2.2.0.ebuild +++ b/dev-java/javolution/javolution-2.2.0.ebuild @@ -1,35 +1,36 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/javolution/javolution-2.2.0.ebuild,v 1.1 2005/01/09 18:00:40 luckyduck Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/javolution/javolution-2.2.0.ebuild,v 1.2 2005/04/16 21:41:32 luckyduck Exp $ inherit eutils java-pkg DESCRIPTION="Java Solution for Real-Time and Embedded Systems" SRC_URI="http://javolution.org/${P}-src.zip" -HOMEPAGE="" +HOMEPAGE="http://javolution.org" LICENSE="LGPL-2.1" SLOT="2.2" -KEYWORDS="~x86 ~amd64" -IUSE="doc" +KEYWORDS="x86 amd64" +IUSE="doc source" DEPEND=">=virtual/jdk-1.4 >=dev-java/ant-core-1.4 - >=app-arch/unzip-5.50-r1 - jikes?( >=dev-java/jikes-1.21 )" + app-arch/unzip + source? ( app-arch/zip )" + #jikes?( >=dev-java/jikes-1.21 )" RDEPEND=">=virtual/jdk-1.4" -RESTRICT="nomirror" S=${WORKDIR}/javolution-${PV%.*} src_compile() { antflags="init_1.4 compile jar" use doc && antflags="${antflags} doc" - # disabled jikes for now till i've the time to write an patch for this + # jikes support, doesnt work without patching #use jikes && antflags="${antflags} -Dbuild.compiler=jikes" ant ${antflags} || die "ant build failed" } src_install() { java-pkg_dojar javolution.jar - dodoc doc/coding_standard.txt doc/license.txt + dodoc doc/coding_standard.txt use doc && java-pkg_dohtml -r index.html api/* + use source && java-pkg_dosrc ${S}/src/javolution } |