blob: 62d8ccfa35871946238082f8ecec1142ceb6af6f (
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
45
46
47
48
49
50
|
# Copyright 1999-2005 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-r2.ebuild,v 1.1 2005/05/14 16:07:59 luckyduck Exp $
inherit java-pkg
DESCRIPTION="Provides easy-to-use wrappers around Reflection and Introspection APIs"
HOMEPAGE="http://jakarta.apache.org/commons/beanutils.html"
SRC_URI="mirror://apache/jakarta/commons/beanutils/source/${P}-src.tar.gz"
LICENSE="Apache-1.1"
SLOT="1.6"
KEYWORDS="x86 ppc sparc amd64 ppc64"
IUSE="doc jikes source"
DEPEND=">=virtual/jdk-1.3
dev-java/ant-core
jikes? ( dev-java/jikes )
source? ( app-arch/zip )"
RDEPEND=">=virtual/jre-1.3
>=dev-java/commons-collections-2.1
>=dev-java/commons-logging-1.0.2"
S=${WORKDIR}/${P}-src
src_unpack() {
unpack ${A}
cd ${S}
echo "commons-collections.jar=$(java-config -p commons-collections)" \
> build.properties
echo "commons-logging.jar=$(java-config -p commons-logging)" | sed s/\=.*:/\=/ >> build.properties
}
src_compile() {
local antflags="jar"
use doc && antflags="${antflags} javadoc"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
ant ${antflags} || die "compilation failed"
}
src_install () {
java-pkg_dojar dist/${PN}*.jar
dodoc RELEASE-NOTES.txt
java-pkg_dohtml STATUS.html PROPOSAL.html
use doc && java-pkg_dohtml -r dist/docs/*
use source && java-pkg_dosrc src/java/org
}
|