blob: cc71e908d9e3004e6a7ad525ceee9011a6d17a4f (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jfreechart/jfreechart-0.9.21.ebuild,v 1.1 2004/11/06 09:56:01 axxo Exp $
inherit java-pkg
DESCRIPTION="JFreeChart is a free Java class library for generating charts"
HOMEPAGE="http://www.jfree.org"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE="doc jikes"
DEPEND=">=virtual/jdk-1.3
dev-java/ant
dev-java/jcommon
=dev-java/servletapi-2.3*
dev-java/gnu-jaxp
jikes? ( dev-java/jikes )"
RDEPEND=">=virtual/jdk-1.3"
src_unpack() {
unpack ${A}
cd ${S}
rm -f lib/* *.jar
}
src_compile() {
local antflags="compile -Djcommon.jar=$(java-config -p jcommon) -Dservlet.jar=$(java-config -p servletapi-2.3) -Dgnujaxp.jar=$(java-config -p gnu-jaxp)"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
use doc && antflags="${antflags} javadoc"
ant -f ant/build.xml ${antflags} || die "compile failed"
}
src_install() {
java-pkg_dojar ${P}.jar
dodoc README.txt CHANGELOG.txt
use doc && java-pkg_dohtml -r javadoc/
}
|