blob: 56ea013b3ab9b136c24b4bcad7722ca2f8cafba0 (
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
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-beanutils/commons-beanutils-1.6.1-r3.ebuild,v 1.11 2007/05/17 20:16:39 betelgeuse Exp $
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-ant-2
DESCRIPTION="Provides easy-to-use wrappers around Reflection and Introspection APIs"
HOMEPAGE="http://jakarta.apache.org/commons/beanutils/"
SRC_URI="mirror://apache/jakarta/commons/beanutils/source/${P}-src.tar.gz"
LICENSE="Apache-1.1"
SLOT="1.6"
KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~x86-fbsd"
IUSE="doc source"
COMMON_DEP="
>=dev-java/commons-collections-2.1
>=dev-java/commons-logging-1.0.2"
RDEPEND=">=virtual/jre-1.3
${COMMON_DEP}"
DEPEND=">=virtual/jdk-1.3
${COMMON_DEP}"
S="${WORKDIR}/${P}-src"
src_unpack() {
unpack ${A}
cd "${S}"
java-ant_rewrite-classpath
}
EANT_GENTOO_CLASSPATH="commons-collections,commons-logging"
src_install() {
java-pkg_dojar dist/${PN}*.jar
dodoc RELEASE-NOTES.txt ||
dohtml STATUS.html PROPOSAL.html || die
use doc && java-pkg_dojavadoc dist/docs/api
use source && java-pkg_dosrc src/java/org
}
|