blob: 20e4e7a61db63c820d7fe22c4748d02e40ee85b0 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jgraph/jgraph-3.2.ebuild,v 1.10 2006/10/05 17:40:20 gustavoz Exp $
inherit java-pkg
DESCRIPTION="Open-source graph component for Java"
SRC_URI="mirror://sourceforge/jgraph/${P}-java1.4-src.zip"
HOMEPAGE="http://www.jgraph.com"
IUSE="doc jikes"
DEPEND=">=virtual/jdk-1.4
dev-java/ant-core
app-arch/unzip
jikes? ( dev-java/jikes )"
RDEPEND=">=virtual/jre-1.4"
LICENSE="jgraph"
SLOT="0"
KEYWORDS="x86 ~ppc amd64"
S=${WORKDIR}
src_compile() {
local antflags="jar"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
ant ${antflags} || die "compile problem"
}
src_install() {
java-pkg_dojar lib/${PN}.jar
dodoc README TODO WHATSNEW ChangeLog
use doc && java-pkg_dohtml -r doc/
}
|