blob: d547c7c1abe57e84339eea0906a356984c256e7a (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/exolabtools/exolabtools-1.0_p20050205.ebuild,v 1.10 2005/07/15 18:52:25 axxo Exp $
inherit java-pkg
MY_P=${P/-1.0_p/-}
DESCRIPTION="Exolab Build Tools"
HOMEPAGE="http://cvs.sourceforge.net/viewcvs.py/openjms/tools/"
SRC_URI="mirror://gentoo/${MY_P}.tar.bz2"
LICENSE="Exolab"
SLOT="0"
KEYWORDS="amd64 x86 sparc ~ppc"
IUSE="doc jikes source"
RDEPEND=">=virtual/jre-1.4
=dev-java/jakarta-oro-2.0*
=dev-java/xerces-1.3*"
DEPEND=">=virtual/jdk-1.4
${RDEPEND}
dev-java/ant-core
jikes? ( dev-java/jikes )
source? ( app-arch/zip )"
S=${WORKDIR}/${MY_P}
src_compile() {
cd ${S}/src
local antflags="jar"
use doc && antflags="${antflags} javadoc"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
ant ${antflags} || die "ant failed"
}
src_install() {
java-pkg_newjar dist/${PN}-1.0.jar ${PN}.jar
if use doc; then
dodoc src/etc/CHANGELOG src/etc/VERSION src/etc/JARS
java-pkg_dohtml -r build/doc/*
fi
use source && java-pkg_dosrc src/main/*
}
|