You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-benchmarks/spew/spew-1.0.8-r1.ebuild

45 lines
1.2 KiB

# Copyright 1999-2015 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-r1.ebuild,v 1.4 2015/01/26 09:41:34 ago Exp $
EAPI=4
inherit autotools eutils toolchain-funcs
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}"/fix-format-security.patch
epatch "${FILESDIR}"/fix-automake-1.13.patch
epatch "${FILESDIR}"/remove-symlinks-makefile.patch
epatch "${FILESDIR}"/fix-ncurses-tinfo.patch
eautoreconf
}
src_configure() {
econf $(use_enable static static-link)
}
src_compile() {
emake AR=$(tc-getAR)
}
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
}