# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-java/jgraph/jgraph-3.2.ebuild,v 1.9 2005/07/16 09:42:58 axxo Exp $ inherit java-pkg DESCRIPTION="Open-source graph component for Java" SRC_URI="mirror://sourceforge/jgraph/${P}-java1.4-src.zip" HOMEPAGE="http://www.jgraph.com" IUSE="doc jikes" DEPEND=">=virtual/jdk-1.4 dev-java/ant-core app-arch/unzip jikes? ( dev-java/jikes )" RDEPEND=">=virtual/jre-1.4" LICENSE="jgraph" SLOT="0" KEYWORDS="x86 ~sparc ~ppc amd64" S=${WORKDIR} src_compile() { local antflags="jar" use jikes && antflags="${antflags} -Dbuild.compiler=jikes" ant ${antflags} || die "compile problem" } src_install() { java-pkg_dojar lib/${PN}.jar dodoc README TODO WHATSNEW ChangeLog use doc && java-pkg_dohtml -r doc/ }