blob: cfccf2834985b386f41bb39485c5708a52f4ba34 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jdom/jdom-1.0_beta10-r1.ebuild,v 1.1 2004/09/19 08:45:34 axxo Exp $
inherit java-pkg
IUSE="jikes doc"
MY_PN="jdom"
MY_PV="b10"
MY_P="${MY_PN}-${MY_PV}"
DESCRIPTION="Java API to manipulate XML data"
SRC_URI="http://www.jdom.org/dist/source/${MY_P}.tar.gz"
HOMEPAGE="http://www.jdom.org"
LICENSE="JDOM"
SLOT="0"
KEYWORDS="~x86 ~sparc ~ppc"
RDEPEND=">=virtual/jdk-1.3"
DEPEND=">=dev-java/ant-1.4.1
dev-java/jaxen
dev-java/saxpath
dev-java/xalan
>=dev-java/xerces-2.6.2-r1
jikes? ( >=dev-java/jikes-1.15 )"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
cd ${S}
rm -f build/*.jar lib/*.jar
cd ${S}/lib
java-pkg_jar-from jaxen
java-pkg_jar-from saxpath
java-pkg_jar-from xerces-2
}
src_compile() {
local antflags="package"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
ant ${antflags} || die "compile problem"
}
src_install() {
java-pkg_dojar \
build/*.jar
dodoc CHANGES.txt COMMITTERS.txt LICENSE.txt README.txt TODO.txt
use doc && dohtml -r build/apidocs/*
}
pkg_postinst() {
einfo
einfo "Online Documentation:"
einfo " http://www.jdom.org/downloads/docs.html"
einfo
}
|