summaryrefslogtreecommitdiff
blob: 289d97e2e6cc0a564758e76e756b5407fa21b8a6 (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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5
JAVA_PKG_IUSE="doc source"

inherit java-pkg-2 java-ant-2

DESCRIPTION="JFreeChart is a free Java class library for generating charts"
HOMEPAGE="http://www.jfree.org/jfreechart"
SRC_URI="mirror://sourceforge/${PN}/${P}.zip"

LICENSE="LGPL-2.1"
SLOT="1.0"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
IUSE="+servlet test"

CDEPEND=">=dev-java/jcommon-1.0.23:1.0
	dev-java/jfreesvg:2.1
	servlet? ( java-virtuals/servlet-api:2.3 )"

DEPEND="${CDEPEND}
	app-arch/unzip
	>=virtual/jdk-1.6
	test? (
		dev-java/ant-junit:0
		dev-java/junit:4
	)"

RDEPEND="${CDEPEND}
	>=virtual/jre-1.6"

JAVA_PKG_FILTER_COMPILER="jikes"

RESTRICT='test'

src_prepare() {
	epatch "${FILESDIR}/${PN}-1.0.19-build.xml.patch"

	# Fix test failure, obtained from
	# http://sourceforge.net/p/jfreechart/bugs/1100/
	epatch "${FILESDIR}/${PN}-1.0.19-fix-TimeSeriesCollectionTest.patch"

	rm -v lib/*.jar || die

	# links to orsonpdf which is only available for purchase under a commercial license
	rm -v "${P}-demo.jar" || die

	if ! use servlet; then
		rm -rf source/org/jfree/chart/servlet || die
	fi
}

src_compile() {
	# Note that compile-experimental depends on compile so it is sufficient to run
	# just compile-experimental
	eant -f ant/build.xml compile-experimental $(use_doc) $(get_jars)
}

# Tests fail due to:
# Caught an exception while logging the end of the build.  Exception was:
# java.lang.OutOfMemoryError: PermGen space
# java.lang.OutOfMemoryError: PermGen space
# I don't think there's much we can do here.
# src_test() {
# 	# X11 tests are disabled using java.awt.headless=true
# 	ANT_TASKS="ant-junit" \
# 	ANT_OPTS="-Djava.awt.headless=true -Duser.timezone=UTC" \
# 		eant -f ant/build.xml test $(get_jars)
# }

src_install() {
	java-pkg_newjar lib/${P}.jar ${PN}.jar
	java-pkg_newjar lib/${P}-experimental.jar ${PN}-experimental.jar

	dodoc README.txt ChangeLog NEWS

	use doc && java-pkg_dojavadoc javadoc
	use source && java-pkg_dosrc source/org
}

get_jars() {
	local antflags="
		-Djcommon.jar=$(java-pkg_getjar jcommon-1.0 jcommon.jar) \
		-Djfreesvg.jar=$(java-pkg_getjar jfreesvg-2.1 jfreesvg.jar)"

	use servlet && antflags="${antflags} \
		-Dservlet.jar=$(java-pkg_getjars servlet-api-2.3)"

	use test && antflags="${antflags} \
		-Djunit.jar=$(java-pkg_getjars --build-only junit-4)"

	echo "${antflags}"
}