forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bndlib-2.1.0.ebuild
71 lines (51 loc) · 1.59 KB
/
bndlib-2.1.0.ebuild
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
66
67
68
69
70
71
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
JAVA_PKG_IUSE="test"
inherit java-pkg-2 java-ant-2
DESCRIPTION="A swiss army knife for OSGi"
HOMEPAGE="http://www.aqute.biz/Bnd/Bnd"
SRC_URI="https://github.com/bndtools/bnd/archive/${PV}.REL.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 x86"
CDEPEND="dev-java/libg:0
dev-java/osgi-compendium:0
dev-java/osgi-core-api:0
dev-java/osgi-enterprise-api:0"
# Tests appear broken and cause a circular dependency.
# test? ( dev-java/bnd-junit:0 )
DEPEND=">=virtual/jdk-1.5
${CDEPEND}
test? ( dev-java/junit:4 )"
RDEPEND=">=virtual/jre-1.5
${CDEPEND}"
S="${WORKDIR}/bnd-${PV}.REL/biz.aQute.${PN}"
EANT_BUILD_TARGET="build"
JAVA_ANT_REWRITE_CLASSPATH="true"
# Tests appear broken and cause a circular dependency.
RESTRICT="test"
java_prepare() {
# Move the correct build.xml into place, needed for testing.
cp ../cnf/build.xml . || die
# Remove bundled jar files.
find . -name '*.jar' -delete > /dev/null
if ! use test ; then
rm -rf src/aQute/bnd/test || die "Failed to remove tests."
fi
}
src_compile() {
local extra_cp=""
if use test ; then
extra_cp=":$(java-pkg_getjars --build-only junit-4)"
fi
EANT_EXTRA_ARGS="-Dgentoo.classpath=$(java-pkg_getjars libg):$(java-pkg_getjars osgi-compendium):$(java-pkg_getjars osgi-core-api):$(java-pkg_getjars osgi-enterprise-api)${extra_cp}" \
java-pkg-2_src_compile
}
EANT_TEST_GENTOO_CLASSPATH="junit-4,bnd-junit"
src_test() {
java-pkg-2_src_test
}
src_install() {
java-pkg_newjar generated/biz.aQute.${PN}.jar
}