blob: b184f8a5d53df3ac9be378eabb7476578443fb3b (
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
|
# Copyright 1999-2006 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_beta2-r1.ebuild,v 1.2 2006/07/22 20:47:43 nelchael Exp $
inherit java-pkg-2 java-ant-2
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="~amd64 ~x86"
IUSE="doc source"
RDEPEND=">=virtual/jre-1.4
>=dev-java/bcel-5.1
>=dev-java/xerces-2.6.2"
DEPEND=">=virtual/jdk-1.4
${RDEPEND}
>=dev-java/ant-core-1.6.2
source? ( app-arch/zip )"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd ${S}/lib
java-pkg_jar-from bcel bcel.jar bcel-5.1.jar
java-pkg_jar-from xerces-2
}
src_compile() {
eant jar -Dversion=${PV} $(use_doc docs)
}
src_install() {
java-pkg_dojar build/lib/${PN}.jar
dodir /usr/share/ant-core/lib
dosym /usr/share/${PN}/lib/${PN}.jar /usr/share/ant-core/lib/
dodoc README.txt
use doc && java-pkg_dohtml -r build/docs
use source && java-pkg_dosrc src/net
java-pkg_dohtml -r manual
}
|