blob: 3b819e8ef465da21f11cfbc7c3b21bb9b693421e (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="JRobin is a 100% pure Java alternative to RRDTool"
HOMEPAGE="http://www.jrobin.org/"
SRC_URI="https://github.com/OpenNMS/${PN}/archive/${P}-1.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND=">=virtual/jre-1.6"
DEPEND=">=virtual/jdk-1.6
test? ( dev-java/asm:4
>=dev-java/cglib-3.1:3
dev-java/easymock:3.2
dev-java/junit:4
dev-java/objenesis:0 )"
S="${WORKDIR}/${PN}-${P}-1/src"
JAVA_SRC_DIR="main/java"
java_prepare() {
find "${WORKDIR}" -name "*.jar" -delete || die
# The tests need the resources in this directory for some reason.
mkdir -p test/java/target/classes || die
cd test/java/target/classes || die
ln -snf ../../../../main/resources/* . || die
}
src_compile() {
java-pkg-simple_src_compile
jar uf "${PN}.jar" -C main/resources . || die
}
src_install() {
java-pkg-simple_src_install
java-pkg_dolauncher "${PN}-rrdtool" --main org.jrobin.cmd.RrdCommander
}
src_test() {
cd test/java || die
local CP=".:${S}/${PN}.jar:$(java-pkg_getjars asm-4,cglib-3,easymock-3.2,junit-4,objenesis)"
local TESTS=$(find * -name "*Test.java")
TESTS="${TESTS//.java}"
TESTS="${TESTS//\//.}"
ejavac -cp "${CP}" -d . $(find * -name "*.java")
ejunit4 -classpath "${CP}" ${TESTS}
}
pkg_postinst() {
elog "The rrdtool executable has been installed as ${PN}-rrdtool to"
elog "avoid conflicting with net-analyzer/rrdtool."
}
|