blob: 5e70c46b1c9226f4be1cb86f35a63d8f53d0e167 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/picocontainer/picocontainer-1.1.ebuild,v 1.6 2007/02/13 20:47:22 betelgeuse Exp $
inherit java-pkg
MY_PV="${PV/_beta/-beta-}"
MY_P="${PN}-${MY_PV}"
DESCRIPTION="PicoContainer is a lightweight container"
HOMEPAGE="http://docs.codehaus.org/display/PICO/"
SRC_URI="http://dist.codehaus.org/${PN}/distributions/${MY_P}-src.tar.gz"
LICENSE="PicoContainer"
SLOT="1"
KEYWORDS="amd64 ppc x86"
IUSE="doc"
RDEPEND=">=virtual/jre-1.4"
DEPEND=">=virtual/jdk-1.4
>=dev-java/ant-core-1.5
>=dev-java/junit-3.8.1"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
cd ${S}
# Don't run tests automatically
sed -i -e 's/compile,test/compile/' build.xml
mkdir -p target/lib
cd target/lib
java-pkg_jar-from junit junit.jar junit-3.8.1.jar
}
src_compile() {
local antflags="-Dfinal.name=${PN} -Dnoget=true jar"
use doc && antflags="${antflags} javadoc"
ant ${antflags} || die
}
src_install() {
use doc && java-pkg_dohtml -r dist/docs/api
java-pkg_dojar target/${PN}.jar
}
|