blob: a99de5cc8fdc8a249790d3fc65ff688a73c13271 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/dbench/dbench-3.04.ebuild,v 1.1 2006/03/27 04:30:39 robbat2 Exp $
DESCRIPTION="Popular filesystem benchmark"
SRC_URI="ftp://ftp.samba.org/pub/tridge/dbench/${P}.tar.gz"
HOMEPAGE="http://samba.org/ftp/tridge/dbench/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
IUSE=""
DEPEND="virtual/libc
sys-apps/attr"
src_install() {
dobin dbench tbench tbench_srv
dodoc README INSTALL
doman dbench.1
insinto /usr/share/dbench
doins client.txt
}
pkg_postinst() {
einfo "You can find the client.txt file in ${ROOT}usr/share/dbench."
}
|