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: stress-1.0.0.ebuild ChangeLog
Date: Fri, 01 May 2009 18:17:56
Message-Id: E1LzxJ3-00022x-R9@stork.gentoo.org
1 patrick 09/05/01 18:17:53
2
3 Modified: stress-1.0.0.ebuild ChangeLog
4 Log:
5 Applying fixes from Tiago Cunha, #261720
6 (Portage version: 2.2_rc31/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.5 app-benchmarks/stress/stress-1.0.0.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/stress/stress-1.0.0.ebuild?rev=1.5&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/stress/stress-1.0.0.ebuild?rev=1.5&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/stress/stress-1.0.0.ebuild?r1=1.4&r2=1.5
14
15 Index: stress-1.0.0.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/stress/stress-1.0.0.ebuild,v
18 retrieving revision 1.4
19 retrieving revision 1.5
20 diff -u -r1.4 -r1.5
21 --- stress-1.0.0.ebuild 24 Apr 2009 04:56:49 -0000 1.4
22 +++ stress-1.0.0.ebuild 1 May 2009 18:17:53 -0000 1.5
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2009 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/stress/stress-1.0.0.ebuild,v 1.4 2009/04/24 04:56:49 darkside Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/stress/stress-1.0.0.ebuild,v 1.5 2009/05/01 18:17:53 patrick Exp $
28
29 inherit flag-o-matic
30
31 @@ -15,17 +15,22 @@
32 KEYWORDS="amd64 ~mips ppc ppc64 ~sparc ~x86"
33 IUSE="static"
34
35 -DEPEND="virtual/libc"
36 +DEPEND="sys-apps/help2man"
37 +RDEPEND=""
38 +
39 +src_unpack() {
40 + unpack ${A}
41 + # Force rebuild of the manpage
42 + rm -f "${S}"/doc/stress.1
43 +}
44
45 src_compile() {
46 use static && append-ldflags -static
47 - econf || die "econf failed"
48 + econf
49 emake || die "emake failed"
50 }
51
52 src_install() {
53 - make DESTDIR="${D}" install || die "make install failed"
54 + emake DESTDIR="${D}" install || die "emake install failed"
55 dodoc ChangeLog AUTHORS README
56 - # Upstream ships an empty file...
57 - rm -r ${D}/usr/share/man
58 }
59
60
61
62 1.33 app-benchmarks/stress/ChangeLog
63
64 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/stress/ChangeLog?rev=1.33&view=markup
65 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/stress/ChangeLog?rev=1.33&content-type=text/plain
66 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-benchmarks/stress/ChangeLog?r1=1.32&r2=1.33
67
68 Index: ChangeLog
69 ===================================================================
70 RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/stress/ChangeLog,v
71 retrieving revision 1.32
72 retrieving revision 1.33
73 diff -u -r1.32 -r1.33
74 --- ChangeLog 24 Apr 2009 04:56:49 -0000 1.32
75 +++ ChangeLog 1 May 2009 18:17:53 -0000 1.33
76 @@ -1,6 +1,9 @@
77 # ChangeLog for app-benchmarks/stress
78 -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
79 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/stress/ChangeLog,v 1.32 2009/04/24 04:56:49 darkside Exp $
80 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
81 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/stress/ChangeLog,v 1.33 2009/05/01 18:17:53 patrick Exp $
82 +
83 + 01 May 2009; Patrick Lauer <patrick@g.o> stress-1.0.0.ebuild:
84 + Applying fixes from Tiago Cunha, #261720
85
86 24 Apr 2009; Jeremy Olexa <darkside@g.o> stress-1.0.0.ebuild:
87 amd64 stable, remove an empty man page shipped by upstream. bug 261720