blob: dce9cce9b3cfd0ca96f791c13bee37fbc0e75999 (
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-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.ebuild,v 1.2 2004/06/24 22:33:41 agriffis 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/xalan
dev-java/xerces
jikes? ( >=dev-java/jikes-1.15 )"
S="${WORKDIR}/${MY_P}"
src_compile() {
local antflags=""
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
}
|