blob: 38dc6028c31ab0ff3e123370ce27aa879904e538 (
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
|
# 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-1.9.1.ebuild,v 1.2 2004/06/24 21:28:19 agriffis Exp $
DESCRIPTION="Load test and measure performance on HTTP/FTP services, and databases."
HOMEPAGE="http://jakarta.apache.org/jmeter/index.html"
SRC_URI="mirror://apache/jakarta/jmeter/source/jakarta-${P}.src.tgz"
DEPEND=">=virtual/jdk-1.3"
RDEPEND=">=virtual/jdk-1.3"
LICENSE="Apache-1.1"
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} alldocs"
ant ${antflags}
}
src_install () {
# Can't think of a better way to deal with this for now...
DIROPTIONS="--mode=0775"
dodir /opt/${PN}
cp -ar bin/ lib/ ${D}/opt/${PN}/
dodoc README
use doc && dohtml -r docs/*
}
|