blob: 8cba0bfde9db1bb1ade32d637ca519ba55d9ea18 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/fastutil/fastutil-4.4.2-r1.ebuild,v 1.2 2007/04/02 07:23:31 opfer Exp $
inherit java-pkg-2 java-ant-2
DESCRIPTION="Provides type-specific maps, sets and lists with a small memory footprint for much faster access and insertion."
SRC_URI="http://fastutil.dsi.unimi.it/${P}-src.tar.gz"
HOMEPAGE="http://fastutil.dsi.unimi.it"
LICENSE="LGPL-2.1"
SLOT="4.4"
IUSE="doc source"
KEYWORDS="~amd64 ~ppc x86"
DEPEND=">=virtual/jdk-1.4
>=dev-java/ant-core-1.6
source? ( app-arch/zip )"
RDEPEND=">=virtual/jre-1.4"
src_compile() {
make sources || die "failed to make sources"
java-pkg-2_src_compile
}
src_install() {
java-pkg_newjar ${P}.jar ${PN}.jar
dodoc CHANGES README || die
use doc && java-pkg_dojavadoc docs
use source && java-pkg_dosrc java/it
}
|