summaryrefslogtreecommitdiff
blob: 8fad15841e8049615765b7ad6fee011cffeac4cb (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/colt/colt-1.2.0.ebuild,v 1.3 2006/10/05 15:17:03 gustavoz Exp $

inherit java-pkg eutils

DESCRIPTION="Colt provides a set of Open Source Libraries for High Performance Scientific and Technical Computing in Java."
SRC_URI="http://dsd.lbl.gov/~hoschek/colt-download/releases/${P}.zip"
HOMEPAGE="http://www-itg.lbl.gov/~hoschek/colt/"
LICENSE="colt"
IUSE="doc jikes"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"

DEPEND=">=virtual/jdk-1.4
		>=dev-java/concurrent-util-1.3.4
		dev-java/ant-core
		app-arch/unzip
		jikes? ( dev-java/jikes )"
RDEPEND=">=virtual/jre-1.4
		 >=dev-java/concurrent-util-1.3.4"

S=${WORKDIR}/${PN}

src_unpack() {
	unpack ${A}
	cd ${S}

	epatch ${FILESDIR}/${PF}-benchmark-no-deprecation.patch

	find ${S} -iname '*.jar' -exec rm \{\} \;

	cd ${S}/lib
	java-pkg_jar-from concurrent-util
}

src_compile() {
	local antflags="javac jar"
	use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
	use doc && antflags="${antflags} javadoc"

	ant ${antflags} || die "compile problem"
}

src_install() {
	java-pkg_dojar lib/${PN}.jar

	dohtml README.html
	use doc && java-pkg_dohtml -r doc/*
}