Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/cfe: cfe-0.12.ebuild ChangeLog
Date: Tue, 14 Oct 2008 16:31:27
Message-Id: E1Kpmna-0004Aa-2H@stork.gentoo.org
1 flameeyes 08/10/14 16:31:06
2
3 Modified: cfe-0.12.ebuild ChangeLog
4 Log:
5 Fix cflags handling by avoiding resetting them (rather than modifying the configure script). Die if the dobin fails.
6 (Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64)
7
8 Revision Changes Path
9 1.3 media-gfx/cfe/cfe-0.12.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/cfe/cfe-0.12.ebuild?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/cfe/cfe-0.12.ebuild?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/cfe/cfe-0.12.ebuild?r1=1.2&r2=1.3
14
15 Index: cfe-0.12.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-gfx/cfe/cfe-0.12.ebuild,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- cfe-0.12.ebuild 22 Jul 2005 18:13:42 -0000 1.2
22 +++ cfe-0.12.ebuild 14 Oct 2008 16:31:05 -0000 1.3
23 @@ -1,8 +1,10 @@
24 -# Copyright 1999-2005 Gentoo Foundation
25 +# Copyright 1999-2008 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/cfe/cfe-0.12.ebuild,v 1.2 2005/07/22 18:13:42 dholm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/cfe/cfe-0.12.ebuild,v 1.3 2008/10/14 16:31:05 flameeyes Exp $
29
30 -inherit eutils
31 +WANT_AUTOCONF="2.1"
32 +
33 +inherit eutils autotools
34
35 DESCRIPTION="Console font editor"
36 # the homepage is missing, so if you find new location please let us know
37 @@ -16,14 +18,17 @@
38
39 DEPEND="sys-libs/ncurses"
40
41 -src_compile() {
42 - sed -i -e "s/CFLAGS=\".*\"/CFLAGS=\"${CFLAGS}\"/" configure || die
43 - econf || die
44 - emake || die
45 +src_unpack() {
46 + unpack ${A}
47 + cd "${S}"
48 +
49 + # Remove unconditional assignment of CFLAGS
50 + sed -i -e '/GCC = yes/d' configure.in
51 + eautoreconf
52 }
53
54 src_install() {
55 - dobin cfe
56 + dobin cfe || die "dobin cfe failed"
57 doman cfe.1
58 dodoc ChangeLog INSTALL THANKS dummy.fnt
59 }
60
61
62
63 1.4 media-gfx/cfe/ChangeLog
64
65 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/cfe/ChangeLog?rev=1.4&view=markup
66 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/cfe/ChangeLog?rev=1.4&content-type=text/plain
67 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/cfe/ChangeLog?r1=1.3&r2=1.4
68
69 Index: ChangeLog
70 ===================================================================
71 RCS file: /var/cvsroot/gentoo-x86/media-gfx/cfe/ChangeLog,v
72 retrieving revision 1.3
73 retrieving revision 1.4
74 diff -u -r1.3 -r1.4
75 --- ChangeLog 9 Feb 2007 07:50:00 -0000 1.3
76 +++ ChangeLog 14 Oct 2008 16:31:06 -0000 1.4
77 @@ -1,6 +1,10 @@
78 # ChangeLog for media-gfx/cfe
79 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
80 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/cfe/ChangeLog,v 1.3 2007/02/09 07:50:00 flameeyes Exp $
81 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
82 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/cfe/ChangeLog,v 1.4 2008/10/14 16:31:06 flameeyes Exp $
83 +
84 + 14 Oct 2008; Diego Pettenò <flameeyes@g.o> cfe-0.12.ebuild:
85 + Fix cflags handling by avoiding resetting them (rather than modifying the
86 + configure script). Die if the dobin fails.
87
88 09 Feb 2007; Diego Pettenò <flameeyes@g.o> ChangeLog:
89 Regenerate digest in Manifest2 format.