blob: e9ae65eb598b6f613cf70510699b06e18984280a (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/xml-xmlbeans/xml-xmlbeans-20041217-r1.ebuild,v 1.5 2007/04/06 17:27:15 nixnut Exp $
inherit eutils java-pkg-2 java-ant-2
DESCRIPTION="An XML-Java binding tool"
HOMEPAGE="http://xmlbeans.apache.org/"
SRC_URI="http://dev.gentoo.org/~karltk/projects/java/distfiles/${P}.tar.bz2"
LICENSE="Apache-2.0"
SLOT="1"
KEYWORDS="~amd64 ppc ~ppc64 x86 ~x86-fbsd"
IUSE="doc source"
RDEPEND=">=virtual/jre-1.4
=dev-java/jaxen-1.1*"
DEPEND=">=virtual/jdk-1.4
>=dev-java/ant-core-1.6.2
source? ( app-arch/zip )
${RDEPEND}"
S=${WORKDIR}/${P}/v1
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/xml-xmlbeans-gentoo.patch
java-ant_rewrite-classpath build.xml
cd ${S}/external/lib
#TODO: includes and old copy named oldxbean.jar
#that probably should not be used
#rm -v *.jar
java-pkg_jar-from jaxen-1.1 jaxen.jar jaxen-1.1-beta-2.jar
java-pkg_filter-compiler jikes
}
src_compile() {
eant xbean.jar $(use_doc docs) \
-Dgentoo.classpath=$(java-pkg_getjars ant-core)
}
# Tests always seem to fail #100895
src_install() {
java-pkg_dojar build/lib/xbean*.jar
dodoc CHANGES.txt NOTICE.txt README.txt
if use doc; then
java-pkg_dojavadoc build/docs/reference
java-pkg_dohtml -r docs
fi
use source && java-pkg_dosrc src/*
}
|