summaryrefslogtreecommitdiff
blob: 9c7234923b1c4b2911c30fcb7f09339205c9b792 (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
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jdom/jdom-1.0_beta8-r3.ebuild,v 1.1 2003/05/26 09:09:53 absinthe Exp $

inherit base

IUSE="jikes"

MY_PN="jdom"
MY_PV="b8"
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 alpha"
RDEPEND=">=virtual/jdk-1.3"
DEPEND="${RDEPEND}
	>=dev-java/ant-1.4.1
	jikes? ( >=dev-java/jikes-1.15 )"
PATCHES="${FILESDIR}/${P}-nojdk1.1.patch"
S="${WORKDIR}/${MY_P}"

src_compile() {
	local antflags

	antflags=""
	use jikes && antflags="${antflags} -Dbuild.compiler=jikes"

	ant ${antflags} || die "compile problem"
}

src_install() {
	# install everything except for the jdom11.jar and collections
	# (pre-Java 2 support which interferes)
	dojar `ls build/jdom*.jar lib/*.jar |grep -v jdk11 |grep -v collections`

	dodoc CHANGES.txt COMMITTERS.txt LICENSE.txt README.txt TODO.txt
	dohtml -r build/apidocs/*
}