blob: 4227179c29e7bb8bfa93edf551332be0150ae8a0 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/prefuse/prefuse-20050114_alpha.ebuild,v 1.2 2005/05/20 19:03:57 luckyduck Exp $
inherit java-pkg
DESCRIPTION="User interface toolkit for building highly interactive visualizations of structured and unstructured data."
SRC_URI="mirror://sourceforge/prefuse/${PN}-alpha-${PV/_alpha/}.zip"
HOMEPAGE="http://prefuse.sourceforge.net/"
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86 amd64"
IUSE="doc jikes"
DEPEND=">=virtual/jdk-1.4
jikes? ( >=dev-java/jikes-1.21 )
>=dev-java/ant-core-1.4
>=app-arch/unzip-5.50-r1"
RDEPEND=">=virtual/jdk-1.4"
RESTRICT="nomirror"
S=${WORKDIR}/${PN}-alpha-${PV/_alpha/}
src_unpack() {
unpack ${A}
cd ${S}
cd lib/
rm -f *.jar
java-pkg_jar-from ant-core ant.jar
}
src_compile() {
local antflags="all"
use doc && antflags="${antflags} api"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
ant ${antflags} || die "ant build failed"
}
src_install() {
java-pkg_dojar build/*.jar
dodoc readme.txt
if use doc; then
java-pkg_dohtml -r doc/api
fi
}
|