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/dbunit/dbunit-2.4.1.ebuild

51 lines
1.3 KiB

# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/dbunit/dbunit-2.4.1.ebuild,v 1.7 2009/07/19 13:42:31 nixnut Exp $
EAPI="2"
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-ant-2
DESCRIPTION="DbUnit is a JUnit extension targeted for database-driven projects"
HOMEPAGE="http://dbunit.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}-sources.jar"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
COMMON_DEP="dev-java/slf4j-api
dev-java/poi:3.2
dev-java/commons-collections:0
dev-java/ant-core
dev-java/junit"
RDEPEND=">=virtual/jre-1.4
dev-java/slf4j-nop
${COMMON_DEP}"
DEPEND=">=virtual/jdk-1.4
app-arch/unzip
${COMMON_DEP}"
#instead of making a folder
S="${WORKDIR}"
java_prepare() {
#Upstream no longer provides a build file.
cp -v "${FILESDIR}"/build-2.4.xml "${S}/build.xml" || die
}
EANT_GENTOO_CLASSPATH="poi-3.2,junit,slf4j-api,commons-collections,ant-core"
src_install() {
#slf4j needed for runtime
java-pkg_register-optional-dependency slf4j-nop
java-pkg_register-optional-dependency slf4j-log4j12
java-pkg_dojar "${S}"/dist/"${PN}.jar"
use doc && java-pkg_dojavadoc build/javadoc
use source && java-pkg_dosrc org
}