blob: e62637ad1fc1dfa0645b3548adfe7d1a7fd97979 (
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
70
71
72
73
74
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/batik/batik-1.6.ebuild,v 1.3 2005/12/11 19:02:14 nichoj Exp $
inherit java-pkg eutils
DESCRIPTION="A Java toolkit to use images in the Scalable Vector Graphics (SVG) format for various purposes, such as viewing, generation or manipulation."
HOMEPAGE="http://xml.apache.org/batik/"
SRC_URI="mirror://apache/xml/batik/${PN}-src-${PV}.zip"
LICENSE="Apache-2.0"
SLOT="1.6"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="doc jikes"
RDEPEND=">=virtual/jre-1.3
=dev-java/rhino-1.5*
>=dev-java/xerces-2.6
dev-java/xml-commons"
DEPEND=">=virtual/jdk-1.3
${RDEPEND}
app-arch/unzip
dev-java/ant-core"
S=${WORKDIR}/xml-batik
src_unpack() {
unpack ${A}
use jikes && epatch ${FILESDIR}/${P}-jikes.patch
cd ${S}/lib && rm -f *.jar
java-pkg_jar-from rhino-1.5
java-pkg_jar-from xerces-2
java-pkg_jar-from xml-commons
}
src_compile() {
local antflags="jars all-jar"
use doc && antflags="${antflags} javadoc"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
# Fails to build on amd64 without this
ANT_OPTS="${ANT_OPTS} -Xmx1g" \
ant ${antflags} || die "compile problem"
}
src_install() {
java-pkg_dojar ${P}/batik*.jar
cd ${P}/lib
rm {js,x*}.jar
# needed because batik expects this layout:
# batik.jar lib/*.jar
# there are hardcoded classpathes in the manifest :(
for jar in *.jar
do
java-pkg_dojar ${jar}
rm -f ${jar}
ln -s ${DESTTREE}/share/${PN}-${SLOT}/lib/${jar} ${jar}
done
cd ${S}
cp -pPR ${P}/lib ${D}${DESTTREE}/share/${PN}-${SLOT}/lib/
dodoc README
use doc && java-pkg_dohtml -r ${P}/docs/api xdocs/*
echo "#!/bin/sh" > ${PN}${SLOT}
echo '${JAVA_HOME}/bin/java -classpath $(java-config -p batik-1.6,xml-commons,rhino-1.5) org.apache.batik.apps.svgbrowser.Main $*' >> ${PN}${SLOT}
dobin ${PN}${SLOT}
}
|