blob: 18689e36cc1bd936d043c9bf6958de7384928284 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/saxon/saxon-8.4b-r3.ebuild,v 1.7 2010/03/28 17:37:39 caster Exp $
JAVA_PKG_IUSE="doc examples source"
inherit java-pkg-2 eutils java-ant-2
DESCRIPTION="A collection of tools for processing XML documents: XSLT processor, XSL library, parser."
MyPV=${PV%b}
SRC_URI="mirror://sourceforge/saxon/saxonb${MyPV/./-}.zip"
HOMEPAGE="http://saxon.sourceforge.net/"
LICENSE="MPL-1.1"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
COMMON_DEP="
dev-java/xom
~dev-java/jdom-1.0
=dev-java/xml-commons-external-1.3*"
RDEPEND=">=virtual/jre-1.4
${COMMON_DEP}"
DEPEND=">=virtual/jdk-1.4
app-arch/unzip
${COMMON_DEP}"
S=${WORKDIR}
src_unpack() {
unpack ${A}
unpack ./source.zip
mkdir src
mv net src
epatch "${FILESDIR}/${P}-jikes.patch"
cp -i "${FILESDIR}/build-${PV}.xml" build.xml || die
rm -v *.jar || die
rm samples/java/*.class || die
mkdir lib && cd lib
java-pkg_jar-from jdom-1.0
java-pkg_jar-from xom
# Is not needed with 1.5 but gets pulled in by deps any way
# without this emerging with sun-jdk-1.4 fails with
# JAVA_PKG_STRICT
java-pkg_jar-from xml-commons-external-1.3
}
src_install() {
java-pkg_dojar dist/*.jar
# the jar is named saxon8 and and helps if new slots come along
java-pkg_dolauncher ${PN}8 --main net.sf.saxon.Transform
if use doc; then
java-pkg_dojavadoc dist/doc/api doc/*
java-pkg_dohtml doc/*
fi
use examples && java-pkg_doexamples samples
use source && java-pkg_dosrc src/*
}
|