forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jmeter-2.0.1-r4.ebuild
60 lines (53 loc) · 1.44 KB
/
jmeter-2.0.1-r4.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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
inherit java-pkg-2 java-ant-2
DESCRIPTION="Load test and measure performance on HTTP/FTP services and databases"
HOMEPAGE="http://jmeter.apache.org/"
SRC_URI="mirror://apache/jakarta/jmeter/source/jakarta-${P}_src.tgz"
COMMON_DEP="
beanshell? ( dev-java/bsh )
>=dev-java/bsf-2.3
=dev-java/junit-3.8*
java-virtuals/javamail"
DEPEND=">=virtual/jdk-1.4
doc? ( >=dev-java/velocity-1.4 )
dev-java/ant-nodeps
sys-apps/sed
${COMMON_DEP}"
RDEPEND=">=virtual/jre-1.4
${COMMON_DEP}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="beanshell doc"
S=${WORKDIR}/jakarta-${P}
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e 's/%//g' bin/jmeter || die "Unable to sed."
cd "${S}/lib"
# FIXME replace all bundled jars bug #63309
# then rm -f *.jar
use beanshell && java-pkg_jar-from bsh
java-pkg_jar-from bsf-2.3
java-pkg_jar-from junit
java-pkg_jar-from --virtual javamail
java-pkg_filter-compiler jikes
}
src_compile() {
local tasks="ant-nodeps"
use doc && tasks="${tasks} velocity"
ANT_TASKS="${tasks}" eant package $(use_doc docs-all) || die "compile problem"
}
src_install() {
diropts --mode=0775
dodir /opt/${PN}
local dest="${D}/opt/${PN}/"
cp -pPR bin/ lib/ printable_docs/ "${dest}"
if use doc; then
cp -pPR printable_docs "${dest}" || die "Failed to install docs"
fi
dodoc README || die
use doc && dohtml -r docs/*
}