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-misc/wipe: ChangeLog wipe-2.2.20050509.ebuild
Date: Tue, 30 Dec 2008 20:36:01
Message-Id: E1LHlJl-0005iC-EA@stork.gentoo.org
1 angelos 08/12/30 20:35:57
2
3 Modified: ChangeLog wipe-2.2.20050509.ebuild
4 Log:
5 QA: Respect CC (bug 243682), respect CFLAGS (bug 240083)
6 (Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
7
8 Revision Changes Path
9 1.21 app-misc/wipe/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/wipe/ChangeLog?rev=1.21&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/wipe/ChangeLog?rev=1.21&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/wipe/ChangeLog?r1=1.20&r2=1.21
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-misc/wipe/ChangeLog,v
18 retrieving revision 1.20
19 retrieving revision 1.21
20 diff -u -r1.20 -r1.21
21 --- ChangeLog 7 Dec 2007 17:00:29 -0000 1.20
22 +++ ChangeLog 30 Dec 2008 20:35:57 -0000 1.21
23 @@ -1,6 +1,10 @@
24 # ChangeLog for app-misc/wipe
25 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-misc/wipe/ChangeLog,v 1.20 2007/12/07 17:00:29 dertobi123 Exp $
27 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/app-misc/wipe/ChangeLog,v 1.21 2008/12/30 20:35:57 angelos Exp $
29 +
30 + 30 Dec 2008; Christoph Mende <angelos@g.o>
31 + wipe-2.2.20050509.ebuild:
32 + QA: Respect CC (bug 243682), respect CFLAGS (bug 240083)
33
34 07 Dec 2007; Tobias Scherbaum <dertobi123@g.o>
35 wipe-2.2.20050509.ebuild:
36
37
38
39 1.7 app-misc/wipe/wipe-2.2.20050509.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/wipe/wipe-2.2.20050509.ebuild?rev=1.7&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/wipe/wipe-2.2.20050509.ebuild?rev=1.7&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/wipe/wipe-2.2.20050509.ebuild?r1=1.6&r2=1.7
44
45 Index: wipe-2.2.20050509.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/app-misc/wipe/wipe-2.2.20050509.ebuild,v
48 retrieving revision 1.6
49 retrieving revision 1.7
50 diff -u -r1.6 -r1.7
51 --- wipe-2.2.20050509.ebuild 7 Dec 2007 17:00:29 -0000 1.6
52 +++ wipe-2.2.20050509.ebuild 30 Dec 2008 20:35:57 -0000 1.7
53 @@ -1,8 +1,8 @@
54 -# Copyright 1999-2007 Gentoo Foundation
55 +# Copyright 1999-2008 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/app-misc/wipe/wipe-2.2.20050509.ebuild,v 1.6 2007/12/07 17:00:29 dertobi123 Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/app-misc/wipe/wipe-2.2.20050509.ebuild,v 1.7 2008/12/30 20:35:57 angelos Exp $
59
60 -inherit versionator
61 +inherit versionator toolchain-funcs
62
63 MY_PV=$(get_version_component_range 3)
64 MY_SRC=${PN}-wip-${MY_PV}
65 @@ -17,7 +17,11 @@
66 KEYWORDS="amd64 ppc sparc x86"
67 IUSE=""
68
69 -DEPEND=""
70 +src_compile() {
71 + econf
72 + sed -i -e "s:-pipe -O2:${CFLAGS}:" "${S}"/Makefile || die "sed failed"
73 + emake CC="$(tc-getCC)" || die emake failed
74 +}
75
76 src_install() {
77 dobin wipe || die "dobin failed"