blob: 8bf75e3fd7284a23e8da0fd9bcdb8e56fadfe01e (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/xom/xom-1.0-r2.ebuild,v 1.12 2007/05/09 14:46:55 armin76 Exp $
inherit java-pkg-2 java-ant-2
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 ~ia64 ppc ppc64 x86 ~x86-fbsd"
IUSE="doc source"
RDEPEND=">=virtual/jre-1.3
>=dev-java/xerces-2.7
dev-java/xalan
dev-java/junit
=dev-java/icu4j-3.0*
dev-java/tagsoup
=dev-java/servletapi-2.4*"
DEPEND=">=virtual/jdk-1.3
dev-java/ant-core
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"
eant ${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/*
}
|