blob: e20bd2449a7dad4e4493f6f3c445edcfb0d9b7d7 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-ant-2
DESCRIPTION="Provides faster type-specific maps, sets and lists with a small memory footprint"
HOMEPAGE="https://github.com/vigna/fastutil"
SRC_URI="https://github.com/vigna/fastutil/archive/${PV}.zip -> ${P}.zip"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86"
DEPEND=">=virtual/jdk-1.6"
RDEPEND=">=virtual/jre-1.6"
src_compile() {
emake sources
# bug 162650 and #175578
java-pkg_init-compiler_
[[ ${GENTOO_COMPILER} != "javac" ]] && export ANT_OPTS="-Xmx512m"
java-pkg-2_src_compile
}
src_install() {
java-pkg_newjar "${P}.jar"
dodoc CHANGES README.md
use doc && java-pkg_dojavadoc docs
use source && java-pkg_dosrc src/it
}
|