Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-benchmarks/stress: ChangeLog stress-1.0.0.ebuild
Date: Sun, 23 Nov 2008 00:53:47
Message-Id: E1L43EO-00020q-5V@stork.gentoo.org
1 patrick 08/11/23 00:53:44
2
3 Modified: ChangeLog
4 Added: stress-1.0.0.ebuild
5 Log:
6 Bumping to 1.0, closing #214977
7 (Portage version: 2.2_rc14/cvs/Linux 2.6.26.5 x86_64)
8
9 Revision Changes Path
10 1.28 app-benchmarks/stress/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/stress/ChangeLog?rev=1.28&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/stress/ChangeLog?rev=1.28&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/stress/ChangeLog?r1=1.27&r2=1.28
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/stress/ChangeLog,v
19 retrieving revision 1.27
20 retrieving revision 1.28
21 diff -u -r1.27 -r1.28
22 --- ChangeLog 21 Feb 2007 20:11:45 -0000 1.27
23 +++ ChangeLog 23 Nov 2008 00:53:44 -0000 1.28
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-benchmarks/stress
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/stress/ChangeLog,v 1.27 2007/02/21 20:11:45 peper Exp $
28 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/stress/ChangeLog,v 1.28 2008/11/23 00:53:44 patrick Exp $
30 +
31 +*stress-1.0.0 (23 Nov 2008)
32 +
33 + 23 Nov 2008; Patrick Lauer <patrick@g.o> +stress-1.0.0.ebuild:
34 + Bumping to 1.0, needs testing :)
35
36 21 Feb 2007; Piotr JaroszyƄski <peper@g.o> ChangeLog:
37 Transition to Manifest2.
38
39
40
41 1.1 app-benchmarks/stress/stress-1.0.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/stress/stress-1.0.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/stress/stress-1.0.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: stress-1.0.0.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-benchmarks/stress/stress-1.0.0.ebuild,v 1.1 2008/11/23 00:53:44 patrick Exp $
51
52 inherit flag-o-matic
53
54 MY_P="${PN}-${PV/_/}"
55 S="${WORKDIR}/${MY_P}"
56 DESCRIPTION="Imposes stressful loads on different aspects of the system."
57 HOMEPAGE="http://weather.ou.edu/~apw/projects/stress"
58 SRC_URI="http://weather.ou.edu/~apw/projects/stress/${MY_P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="static"
64
65 DEPEND="virtual/libc"
66
67 src_compile() {
68 use static && append-ldflags -static
69 econf || die "econf failed"
70 emake || die "emake failed"
71 }
72
73 src_install() {
74 make DESTDIR="${D}" install || die "make install failed"
75 dodoc ChangeLog AUTHORS README
76 }