blob: 45094605b7c8a90f8b82b5da67e0383d97c39b3e (
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
59
60
61
62
63
64
65
66
67
68
69
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/xom/xom-1.0-r7.ebuild,v 1.5 2010/01/03 21:53:10 fauli Exp $
JAVA_PKG_IUSE="doc examples source"
EAPI=1
inherit java-pkg-2 java-ant-2
XOMVER="xom-${PV/_beta/b}"
DESCRIPTION="A new XML object model."
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 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE=""
COMMON_DEPEND="dev-java/xerces:2
dev-java/icu4j:0
examples? ( dev-java/servletapi:2.4 )"
RDEPEND=">=virtual/jre-1.4
${COMMON_DEPEND}"
DEPEND=">=virtual/jdk-1.4
${COMMON_DEPEND}"
#test? ( dev-java/ant-junit:0 )
S=${WORKDIR}/XOM
# Test require network access to pass
# They need a redirected http document on public web
RESTRICT="test"
src_unpack() {
unpack ${A}
cd "${S}"
java-ant_ignore-system-classes
rm -v *.jar || die
# nuke test files as we aren't installing them
rm -vr src/nu/xom/tests || die
cd "${S}/lib"
rm -v *.jar || die
#java-pkg_jar-from --build-only junit
#java-pkg_jar-from --build-only xalan
java-pkg_jar-from xerces-2
java-pkg_jar-from icu4j icu4j.jar normalizer.jar
# tagsoup is only needed to run betterdoc but we use the pregenerated ones
}
src_compile() {
local ant_flags="-Ddebug=off"
use examples && ant_flags="${ant_flags} -Dservlet.jar=$(java-pkg_getjar servletapi-2.4 servlet-api.jar)"
eant jar ${ant_flags}\
$(use examples && echo samples)
}
EANT_TEST_ANT_TASKS="ant-trax"
src_install() {
java-pkg_newjar build/${XOMVER}.jar ${PN}.jar
use examples && java-pkg_dojar build/xom-samples.jar
dodoc Todo.txt || die
use doc && java-pkg_dojavadoc apidocs/
use source && java-pkg_dosrc src/*
use examples && java-pkg_doexamples --subdir nu/xom/samples src/nu/xom/samples
}
|