summaryrefslogtreecommitdiff
blob: 66b3e13ee7453610ad3b04c8360ea89945b94217 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-dbutils/commons-dbutils-1.0.ebuild,v 1.2 2008/01/10 23:09:29 caster Exp $

inherit java-pkg-2 java-ant-2

DESCRIPTION="Jakarta components: small set of classes designed to make working with JDBC easier"
HOMEPAGE="http://jakarta.apache.org/commons/dbutils/"
SRC_URI="mirror://apache/jakarta/commons/dbutils/source/${P}-src.tar.gz"
DEPEND=">=virtual/jdk-1.3
	>=dev-java/ant-core-1.6
	=dev-java/junit-3.8*"
RDEPEND=">=virtual/jre-1.3"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc source"

src_compile() {

	use doc && antflags="${antflags} javadoc"
	eant -Dnoget=only jar ${antflags} || die "compilation failed"

}

src_install() {

	java-pkg_newjar target/${PN}-1.1-dev.jar ${PN}.jar

	use doc && java-pkg_dohtml -r dist/docs/
	use source && java-pkg_dosrc src/java/*

}