blob: e9464da6fe40094dc33e2f0f319e170a20a3b5af (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/xom/xom-1.0-r1.ebuild,v 1.3 2005/07/09 16:10:20 axxo Exp $
inherit java-pkg
XOMVER="xom-${PV/_beta/b}"
DESCRIPTION="XOM is a new XML object model. It is a tree-based API for processing XML with Java that strives for correctness and simplicity."
HOMEPAGE="http://cafeconleche.org/XOM/index.html"
SRC_URI="http://cafeconleche.org/XOM/${XOMVER}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ~sparc x86"
IUSE="doc jikes source"
RDEPEND=">=virtual/jre-1.3
=dev-java/xerces-2.6*
dev-java/xalan
dev-java/junit
dev-java/icu4j
dev-java/tagsoup
=dev-java/servletapi-2.4*"
DEPEND=">=virtual/jdk-1.3
dev-java/ant-core
jikes? ( dev-java/jikes )
source? ( app-arch/zip )
${RDEPEND}"
S=${WORKDIR}/XOM
src_unpack() {
unpack ${A}
cd ${S}
rm -f *.jar
cd ${S}/lib
rm -f *.jar
java-pkg_jar-from junit
java-pkg_jar-from xalan
java-pkg_jar-from xerces-2
java-pkg_jar-from servletapi-2.4
java-pkg_jar-from icu4j icu4j.jar normalizer.jar
java-pkg_jar-from tagsoup
}
src_compile() {
local antflags="jar -Ddebug=off -Dtagsoup.jar=lib/tagsoup.jar"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
ant ${antflags} || die "Failed Compiling"
}
src_install() {
java-pkg_newjar build/${XOMVER}.jar ${PN}.jar
dodoc Todo.txt
use doc && java-pkg_dohtml -r apidocs/
use source && java-pkg_dosrc src/*
}
|