blob: 1e145bfd386b8b63d3324a0fd92fc823f2550c56 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/jmeter/jmeter-2.0.1.ebuild,v 1.1 2004/08/23 22:02:07 zx Exp $
DESCRIPTION="Load test and measure performance on HTTP/FTP services and databases."
HOMEPAGE="http://jakarta.apache.org/jmeter"
SRC_URI="mirror://apache/jakarta/jmeter/source/jakarta-${P}_src.tgz"
DEPEND=">=virtual/jdk-1.3
doc? ( >=dev-java/velocity-1.4 )"
RDEPEND=">=virtual/jdk-1.3"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc jikes"
S=${WORKDIR}/jakarta-${P}
src_compile () {
local antflags="package"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
use doc && antflags="${antflags} docs-all"
use doc && cp /usr/share/velocity/lib/velocity-*.jar $S/lib
ant ${antflags} || die "compile problem"
}
src_install () {
DIROPTIONS="--mode=0775"
dodir /opt/${PN}
cp -ar bin/ lib/ printable_docs/ ${D}/opt/${PN}/
dodoc README
use doc && dohtml -r docs/*
}
|