You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-java/junitperf/junitperf-1.9.1-r1.ebuild

47 lines
1.0 KiB

# Copyright 1999-2015 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-r1.ebuild,v 1.20 2015/07/11 09:22:10 chewi Exp $
JAVA_PKG_IUSE="doc test source"
inherit java-pkg-2 java-ant-2
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="amd64 ~arm ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
IUSE=""
COMMON_DEP="=dev-java/junit-3.8*"
RDEPEND=">=virtual/jre-1.4
${COMMON_DEP}"
DEPEND=">=virtual/jdk-1.4
app-arch/unzip
test? ( dev-java/ant-junit )
${COMMON_DEP}"
src_unpack () {
unpack ${A}
cd "${S}"/lib || die
rm -fv *.jar || die
java-pkg_jar-from junit
}
EANT_DOC_TARGET=""
src_test() {
ANT_TASKS="ant-junit" eant test
}
src_install() {
java-pkg_dojar lib/${PN}.jar
dodoc README || die
use doc && java-pkg_dojavadoc docs/api
use source && java-pkg_dosrc src/app/*
}