Gentoo Archives: gentoo-commits

From: "Christoph Mende (angelos)" <angelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-benchmarks/contest: ChangeLog contest-0.61.ebuild
Date: Tue, 30 Dec 2008 17:26:49
Message-Id: E1LHiMh-0008Mz-3R@stork.gentoo.org
1 angelos 08/12/30 17:26:47
2
3 Modified: ChangeLog contest-0.61.ebuild
4 Log:
5 QA: Use correct CC (bug #243514) and respect LDFLAGS
6 (Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
7
8 Revision Changes Path
9 1.8 app-benchmarks/contest/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/ChangeLog?rev=1.8&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/ChangeLog?rev=1.8&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/ChangeLog?r1=1.7&r2=1.8
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/contest/ChangeLog,v
18 retrieving revision 1.7
19 retrieving revision 1.8
20 diff -u -r1.7 -r1.8
21 --- ChangeLog 21 Apr 2008 16:32:09 -0000 1.7
22 +++ ChangeLog 30 Dec 2008 17:26:47 -0000 1.8
23 @@ -1,6 +1,9 @@
24 # ChangeLog for app-benchmarks/contest
25 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/ChangeLog,v 1.7 2008/04/21 16:32:09 phreak Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/ChangeLog,v 1.8 2008/12/30 17:26:47 angelos Exp $
28 +
29 + 30 Dec 2008; Christoph Mende <angelos@g.o> contest-0.61.ebuild:
30 + QA: Use correct CC (bug #243514) and respect LDFLAGS
31
32 21 Apr 2008; Christian Heim <phreak@g.o> metadata.xml:
33 Fix up metadata.xml. If there's no maintainer for the package, the metadata
34
35
36
37 1.7 app-benchmarks/contest/contest-0.61.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild?rev=1.7&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild?rev=1.7&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild?r1=1.6&r2=1.7
42
43 Index: contest-0.61.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild,v
46 retrieving revision 1.6
47 retrieving revision 1.7
48 diff -u -r1.6 -r1.7
49 --- contest-0.61.ebuild 8 Jul 2005 14:19:56 -0000 1.6
50 +++ contest-0.61.ebuild 30 Dec 2008 17:26:47 -0000 1.7
51 @@ -1,10 +1,12 @@
52 -# Copyright 1999-2005 Gentoo Foundation
53 +# Copyright 1999-2008 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild,v 1.6 2005/07/08 14:19:56 dholm Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/contest/contest-0.61.ebuild,v 1.7 2008/12/30 17:26:47 angelos Exp $
57
58 -DESCRIPTION="Test system responsiveness for compare different kernels"
59 +inherit toolchain-funcs
60 +
61 +DESCRIPTION="Test system responsiveness to compare different kernels"
62 HOMEPAGE="http://members.optusnet.com.au/ckolivas/contest/"
63 -SRC_URI="http://members.optusnet.com.au/ckolivas/contest/${P}.tar.gz"
64 +SRC_URI="http://members.optusnet.com.au/ckolivas/${PN}/${P}.tar.gz"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 @@ -15,10 +17,13 @@
69
70 src_unpack () {
71 unpack ${A}
72 + cd "${S}"
73 +
74 #Removing -g
75 - sed -i "s:-g::" ${S}/Makefile
76 + sed -i "s:-g::" Makefile
77 #Adding our cflags
78 - sed -i "s:-O2:${CFLAGS}:" ${S}/Makefile
79 + sed -i "s:-O2:${CFLAGS} ${LDFLAGS}:" Makefile
80 + sed -i -e "/^CC/s/gcc/$(tc-getCC)/" Makefile
81 }
82 src_compile() {
83 emake || die