blob: 065af8bb749ab80e13760f1b58aba6b0ba702aef (
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
|
# Copyright 1999-2002 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-r1.ebuild,v 1.4 2002/10/05 05:39:10 drobbins Exp $
IUSE="jikes"
P="jdom-b8"
A="jdom-b8.tar.gz"
DESCRIPTION="Java API to manipulate XML data"
SRC_URI="http://www.jdom.org/dist/source/${A}"
HOMEPAGE="http://www.jdom.org"
LICENSE="JDOM"
SLOT="0"
KEYWORDS="x86"
RDEPEND=">=virtual/jdk-1.3"
DEPEND="${RDEPEND}
>=dev-java/ant-1.4.1
jikes? ( >=dev-java/jikes-1.15 )"
src_compile() {
local antflags
antflags=""
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
ant ${antflags} || die "compile problem"
}
src_install() {
dojar build/jdom*.jar lib/*.jar
dodoc CHANGES.txt COMMITTERS.txt LICENSE.txt README.txt TODO.txt
dohtml -r build/apidocs/*
}
|