blob: 311756ae9774ca32afedd1e81d2d6b83d9b75941 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/exolabcore/exolabcore-0.3.7_p20050205.ebuild,v 1.10 2006/10/05 15:39:28 gustavoz Exp $
inherit eutils java-pkg
MY_DATE="${PV##*_p}"
MY_PV="${PV%%_p*}"
MY_P="${PN}-${MY_DATE}"
DESCRIPTION="Exolab Build Tools"
HOMEPAGE="http://openjms.cvs.sourceforge.net/openjms/exolabcore/"
SRC_URI="mirror://gentoo/${MY_P}.tar.bz2"
LICENSE="Exolab"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="doc jikes source"
RDEPEND=">=virtual/jre-1.4
dev-java/cdegroot-db
dev-java/commons-cli
dev-java/commons-logging
dev-java/exolabtools
=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_unpack() {
unpack ${A}
cd "${S}/src"
epatch "${FILESDIR}/${P}-buildfile.patch"
cd "${S}/lib"
rm -f *.jar
java-pkg_jar-from cdegroot-db-1
java-pkg_jar-from commons-cli-1
java-pkg_jar-from commons-logging
java-pkg_jar-from exolabtools
java-pkg_jar-from jakarta-oro-2.0 jakarta-oro.jar oro.jar
java-pkg_jar-from xerces-1.3
}
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}-${MY_PV}.jar ${PN}.jar
use doc && java-pkg_dohtml -r build/doc/*
use source && java-pkg_dosrc src/main/*
}
|