Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/contest/
Date: Mon, 13 Feb 2017 08:04:04
Message-Id: 1486973015.db214b250d1be9ba71814362aab004db3afe6051.kensington@gentoo
1 commit: db214b250d1be9ba71814362aab004db3afe6051
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 13 08:03:12 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 13 08:03:35 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db214b25
7
8 app-benchmarks/contest: remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 app-benchmarks/contest/contest-0.61.ebuild | 38 ------------------------------
13 1 file changed, 38 deletions(-)
14
15 diff --git a/app-benchmarks/contest/contest-0.61.ebuild b/app-benchmarks/contest/contest-0.61.ebuild
16 deleted file mode 100644
17 index d5ff20302e..0000000000
18 --- a/app-benchmarks/contest/contest-0.61.ebuild
19 +++ /dev/null
20 @@ -1,38 +0,0 @@
21 -# Copyright 1999-2009 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -inherit toolchain-funcs eutils
26 -
27 -DESCRIPTION="Test system responsiveness to compare different kernels"
28 -HOMEPAGE="http://users.tpg.com.au/ckolivas/contest/"
29 -SRC_URI="http://www.tux.org/pub/kernel/people/ck/apps/${PN}/${P}.tar.bz2"
30 -
31 -LICENSE="GPL-2"
32 -SLOT="0"
33 -KEYWORDS="amd64 ppc x86"
34 -IUSE=""
35 -
36 -RDEPEND=">=app-benchmarks/dbench-2.0"
37 -
38 -src_unpack () {
39 - unpack ${A}
40 - cd "${S}"
41 -
42 - epatch "${FILESDIR}/contest-fortify_sources.patch"
43 -
44 - #Removing -g
45 - sed -i "s:-g::" Makefile
46 - #Adding our cflags
47 - sed -i "s:-O2:${CFLAGS} ${LDFLAGS}:" Makefile
48 - sed -i -e "/^CC/s/gcc/$(tc-getCC)/" Makefile
49 -}
50 -src_compile() {
51 - emake || die
52 -}
53 -
54 -src_install() {
55 - dobin contest || die
56 - doman contest.1
57 - dodoc README
58 -}