summaryrefslogtreecommitdiff
blob: 458ac935520d8df2e8afbf71260800bdda8f19e4 (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
38
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

inherit toolchain-funcs eutils

DESCRIPTION="Test system responsiveness to compare different kernels"
HOMEPAGE="http://users.tpg.com.au/ckolivas/contest/"
SRC_URI="http://members.optusnet.com.au/ckolivas/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""

RDEPEND=">=app-benchmarks/dbench-2.0"

src_unpack () {
	unpack ${A}
	cd "${S}"

	epatch "${FILESDIR}/contest-fortify_sources.patch"

	#Removing -g
	sed -i "s:-g::" Makefile
	#Adding our cflags
	sed -i "s:-O2:${CFLAGS} ${LDFLAGS}:" Makefile
	sed -i -e "/^CC/s/gcc/$(tc-getCC)/" Makefile
}
src_compile() {
	emake || die
}

src_install() {
	dobin contest || die
	doman contest.1
	dodoc README
}