blob: 97c54be588ed2d96b4c4290bdfecf02570046315 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
JAVA_PKG_IUSE="source doc test"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="Fast, efficient Java serialization and cloning"
HOMEPAGE="https://github.com/EsotericSoftware/kryo"
SRC_URI="https://github.com/EsotericSoftware/${PN}/archive/${P}.zip"
LICENSE="BSD-2"
SLOT="2"
KEYWORDS="~amd64 ~x86"
IUSE=""
CDEPEND="
dev-java/objenesis:0
dev-java/reflectasm:0
dev-java/minlog:0"
DEPEND="
${CDEPEND}
test? (
dev-java/junit:4
)
>=virtual/jdk-1.6"
RDEPEND="
${CDEPEND}
>=virtual/jre-1.6"
S="${WORKDIR}/${PN}-${P}"
JAVA_SRC_DIR="src"
JAVA_GENTOO_CLASSPATH="objenesis,reflectasm,minlog"
src_prepare() {
rm "${S}"/pom.xml || die
find "${S}" -name "*.jar" -delete || die
}
src_test() {
mkdir target/tests || die
local testcp="${S}/${PN}.jar:target/tests:$(java-pkg_getjars junit-4)"
testcp+=":$(java-pkg_getjars --with-dependencies ${JAVA_GENTOO_CLASSPATH})"
ejavac -cp "${testcp}" -d target/tests $(find test/ -name "*.java")
tests=$(find target/tests -name "*Test.class" \
| sed -e 's/target\/tests\///g' -e "s/\.class//" -e "s/\//./g" \
| grep -vP '\$');
ejunit4 -cp "${testcp}" ${tests}
}
|