blob: 8c32d6eafe3f6886b23bf89232de55a290c17692 (
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
33
34
35
36
37
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/spew/spew-1.0.8.ebuild,v 1.6 2012/07/14 12:36:36 blueness Exp $
EAPI=4
inherit autotools eutils
DESCRIPTION="Measures I/O performance and/or generates I/O load"
HOMEPAGE="http://spew.berlios.de/"
SRC_URI="ftp://ftp.berlios.de/pub/spew/1.0.8/spew-1.0.8.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~mips ~ppc ~ppc64 x86"
IUSE="static"
DEPEND="static? ( sys-libs/ncurses[-gpm] dev-libs/popt[static-libs] )
!static? ( sys-libs/ncurses dev-libs/popt )"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/remove-symlinks-makefile.patch
eautoreconf
}
src_configure() {
econf $(use_enable static static-link)
}
src_install() {
emake DESTDIR="${D}" install
dosym ${PN} /usr/bin/gorge
dosym ${PN} /usr/bin/regorge
dosym ${PN}.1.bz2 /usr/share/man/man1/gorge.1.bz2
dosym ${PN}.1.bz2 /usr/share/man/man1/reorge.1.bz2
}
|