blob: df2e676fafbae951b94e0db9dac858fdf0c3f35b (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/picocontainer/picocontainer-1.0_beta4.ebuild,v 1.7 2004/10/22 10:02:14 absinthe Exp $
inherit java-pkg
DESCRIPTION="PicoContainer is a lightweight container"
HOMEPAGE="http://docs.codehaus.org/display/PICO/"
SRC_URI="http://dist.codehaus.org/picocontainer/distributions/${PN}-1.0-beta-4-src.tar.gz"
LICENSE="PicoContainer"
SLOT="1"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE="doc"
DEPEND=">=dev-java/ant-1.5*
>=dev-java/junit-3.8.1"
S=${WORKDIR}/${PN}-1.0-beta-4
src_unpack() {
unpack ${A}
# FIXME: patch
cp ${FILESDIR}/build-${PV}.xml ${S}/build.xml
mkdir -p ${S}/target/lib
(
cd ${S}/target/lib
java-pkg_jar-from ant ant.jar ant-1.5.jar
java-pkg_jar-from ant ant-optional.jar ant-optional-1.5.jar
java-pkg_jar-from junit junit.jar junit-3.8.1.jar
)
}
src_compile() {
ant jar || die
if (use doc) ; then
ant javadoc || die
fi
cp target/picocontainer-1.0-SNAPSHOT.jar \
target/picocontainer-1.0.jar
}
src_install() {
dodoc LICENSE.txt
use doc && ( java-pkg_dohtml -r dist/docs/api )
java-pkg_dojar target/picocontainer-1.0.jar
}
|