# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-java/junitperf/junitperf-1.9.1.ebuild,v 1.5 2005/06/09 00:51:46 mr_bones_ Exp $ inherit java-pkg DESCRIPTION="Simple framework to write repeatable tests" SRC_URI="http://www.clarkware.com/software/${P}.zip" HOMEPAGE="http://www.clarkware.com/software/JUnitPerf.html" LICENSE="BSD" SLOT="0" KEYWORDS="x86 amd64 ppc" IUSE="doc jikes junit" DEPEND=">=virtual/jdk-1.3 app-arch/unzip jikes? ( >=dev-java/jikes-1.21 ) junit? ( >=dev-java/junit-3.8.1 dev-java/ant ) !junit? ( >=dev-java/ant-core-1.4 ) source? ( app-arch/zip )" RDEPEND=">=virtual/jdk-1.3" src_compile() { antflags="jar" use jikes && antflags="${antflags} -Dbuild.compiler=jikes" use junit && antflags="${antflags} test" ant ${antflags} || die "failed to compile" } src_install() { java-pkg_dojar lib/${PN}.jar dodoc README use doc && java-pkg_dohtml -r docs/api/* use source && java-pkg_dosrc src/app/* }