blob: 867517deab46857060315008bbe8726e585287de (
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/fop/fop-0.95.ebuild,v 1.5 2009/07/19 14:08:06 nixnut Exp $
# TODO: if 'doc' use flag is used then should build also extra docs ('docs' ant target), currently it cannot
# be built as it needs forrest which we do not have
# TODO: package and use optional dependency jeuclid
EAPI=2
JAVA_PKG_IUSE="doc examples source"
WANT_ANT_TASKS="ant-trax"
inherit eutils java-pkg-2 java-ant-2
DESCRIPTION="Formatting Objects Processor is a print formatter driven by XSL"
HOMEPAGE="http://xmlgraphics.apache.org/fop/"
SRC_URI="mirror://apache/xmlgraphics/${PN}/source/${P}-src.zip"
LICENSE="Apache-2.0"
SLOT="0"
# doesn't work with java.awt.headless
RESTRICT="test"
KEYWORDS="amd64 ~ia64 ppc ppc64 x86"
IUSE="hyphenation jai jimi"
COMMON_DEPEND="
dev-java/avalon-framework:4.2
dev-java/batik:1.7
dev-java/commons-io:1
dev-java/commons-logging:0
java-virtuals/servlet-api:2.2
dev-java/xmlgraphics-commons:1.3
dev-java/xml-commons-external:1.3
dev-java/xalan:0
jai? ( dev-java/sun-jai-bin )
jimi? ( dev-java/sun-jimi )"
RDEPEND=">=virtual/jre-1.4
${COMMON_DEPEND}"
DEPEND=">=virtual/jdk-1.4
hyphenation? ( dev-java/offo-hyphenation )
app-arch/unzip
${COMMON_DEPEND}"
# test? (
# =dev-java/junit-3.8*
# dev-java/xmlunit
# )"
java_prepare() {
# automagic is bad
java-ant_ignore-system-classes || die
cd "${S}/lib"
rm -v *.jar || die
java-pkg_jarfrom --build-only ant-core ant.jar
java-pkg_jarfrom avalon-framework-4.2 avalon-framework.jar \
avalon-framework-4.2.0.jar
java-pkg_jarfrom batik-1.7
java-pkg_jarfrom commons-io-1 commons-io.jar commons-io-1.3.1.jar
java-pkg_jarfrom commons-logging commons-logging.jar \
commons-logging-1.0.4.jar
java-pkg_jarfrom --virtual servlet-api-2.2 servlet.jar servlet-2.2.jar
java-pkg_jarfrom xmlgraphics-commons-1.3
java-pkg_jarfrom xalan xalan.jar xalan-2.7.0.jar
java-pkg_jarfrom xml-commons-external-1.3
use jai && java-pkg_jar-from sun-jai-bin
use jimi && java-pkg_jar-from sun-jimi
}
EANT_DOC_TARGET="javadocs"
EANT_BUILD_TARGET="package"
src_compile() {
# because I killed the automagic tests; all our JDK's have JCE
local af="-Djdk14.present=true -Djce.present=true"
use hyphenation && af="${af} -Duser.hyph.dir=/usr/share/offo-hyphenation/hyph/"
use jai && af="${af} -Djai.present=true"
use jimi && af="${af} -Djimi.present=true"
export ANT_OPTS="-Xmx256m"
java-pkg-2_src_compile ${af} -Djavahome.jdk14="${JAVA_HOME}"
}
src_test() {
java-pkg_jar-from --into lib xmlunit-1
java-pkg_jar-from --into lib junit
ANT_OPTS="-Xmx1g -Djava.awt.headless=true" eant -Djunit.fork=off junit
}
src_install() {
java-pkg_dojar build/fop.jar build/fop-sandbox.jar
if use hyphenation; then
java-pkg_dojar build/fop-hyph.jar
insinto /usr/share/${PN}/
doins -r hyph || die
fi
# doesn't support everything upstream launcher does...
java-pkg_dolauncher ${PN} --main org.apache.fop.cli.Main
dodoc NOTICE README || die
use doc && java-pkg_dojavadoc build/javadocs
use examples && java-pkg_doexamples examples/* conf
use source && java-pkg_dosrc src/java/org src/sandbox/org
}
pkg_postinst(){
elog "The SVG Renderer and the MIF Handler have not been resurrected"
elog "They are currently non-functional."
elog
elog "The API of FOP has changed considerably and is not backwards-compatible"
elog "with versions 0.20.5 and 0.91beta. Version 0.92 introduced the new"
elog "stable API."
}
|