blob: fc0c3fcd2175114a2e97a61e4cb41fb61cff4cb7 (
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/commons-cli/commons-cli-1.0-r4.ebuild,v 1.3 2004/08/19 19:00:19 lv Exp $
inherit java-pkg eutils
DESCRIPTION="The CLI library provides a simple and easy to use API for working with the command line arguments and options."
HOMEPAGE="http://jakarta.apache.org/commons/cli/"
SRC_URI="mirror://apache/jakarta/commons/cli/source/cli-${PV}-src.tar.gz"
DEPEND=">=virtual/jdk-1.3
>=dev-java/ant-1.4
>=dev-java/commons-logging-1.0
>=dev-java/junit-3.7
>=dev-java/commons-lang-1.0"
RDEPEND=">=virtual/jdk-1.3"
LICENSE="Apache-1.1"
SLOT="1"
KEYWORDS="x86 sparc ppc amd64"
IUSE="doc jikes junit"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-${PV}-gentoo.diff || die "patch failed"
echo "commons-logging.jar=`java-config -p commons-logging`" >> build.properties
echo "commons-lang.jar=`java-config -p commons-lang`" >> build.properties
use junit && echo "junit.jar=`java-config -p junit`" >> build.properties
}
src_compile() {
local antflags="jar"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
use doc && antflags="${antflags} javadoc"
use junit && antflags="${antflags} test"
ant ${antflags} || die "compilation failed"
}
src_install() {
mv ${S}/target/${P}.jar ${S}/target/${PN}.jar
java-pkg_dojar target/${PN}.jar
use doc && dohtml -r target/docs/
dodoc README.txt
}
|