blob: 5598c09e7c04eed60067d3e0beffaa8c2e4dd495 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-contrib/ant-contrib-1.0_beta1-r1.ebuild,v 1.4 2005/01/01 18:06:55 eradicator Exp $
inherit java-pkg
DESCRIPTION="The Ant-Contrib project is a collection of tasks (and at one point maybe types and other tools) for Apache Ant."
HOMEPAGE="http://ant-contrib.sourceforge.net/"
SRC_URI="mirror://sourceforge/ant-contrib/${PN}-${PV/_beta/b}-src.tar.bz2"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="x86 ~amd64"
IUSE="jikes doc"
DEPEND=">=dev-java/ant-1.6.2
>=virtual/jdk-1.4
dev-java/xerces
jikes? ( dev-java/jikes )"
S=${WORKDIR}/${PN}
src_compile() {
local antflags="jar -Dversion=${PV} -lib $(java-config -p xerces-2)"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
use doc && antflags="${antflags} docs"
ant ${antflags} || die "failed to compile"
}
src_install() {
java-pkg_dojar build/lib/${PN}-${PV}.jar || die "pkg jar not found"
dodir /usr/share/ant-core/lib
dosym /usr/share/${PN}/lib/${PN}-${PV}.jar /usr/share/ant-core/lib/
dodoc README.txt
use doc && java-pkg_dohtml -r build/docs
java-pkg_dohtml -r manual
}
|