Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xfe: ChangeLog xfe-1.19.2.ebuild
Date: Wed, 05 Aug 2009 12:53:17
Message-Id: E1MYfzV-0006Tr-Ph@stork.gentoo.org
1 ssuominen 09/08/05 12:53:13
2
3 Modified: ChangeLog xfe-1.19.2.ebuild
4 Log:
5 Fix building with GCC 4.4+ and GLIBC 2.10+ wrt #278101.
6 (Portage version: 2.2_rc36/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.50 x11-misc/xfe/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xfe/ChangeLog?rev=1.50&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xfe/ChangeLog?rev=1.50&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xfe/ChangeLog?r1=1.49&r2=1.50
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v
18 retrieving revision 1.49
19 retrieving revision 1.50
20 diff -u -r1.49 -r1.50
21 --- ChangeLog 4 Oct 2008 12:01:45 -0000 1.49
22 +++ ChangeLog 5 Aug 2009 12:53:13 -0000 1.50
23 @@ -1,6 +1,10 @@
24 # ChangeLog for x11-misc/xfe
25 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v 1.49 2008/10/04 12:01:45 mabi Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/ChangeLog,v 1.50 2009/08/05 12:53:13 ssuominen Exp $
29 +
30 + 05 Aug 2009; Samuli Suominen <ssuominen@g.o> xfe-1.19.2.ebuild,
31 + +files/xfe-1.19.2-gcc44.patch:
32 + Fix building with GCC 4.4+ and GLIBC 2.10+ wrt #278101.
33
34 *xfe-1.19.2 (04 Oct 2008)
35
36
37
38
39 1.2 x11-misc/xfe/xfe-1.19.2.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xfe/xfe-1.19.2.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xfe/xfe-1.19.2.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xfe/xfe-1.19.2.ebuild?r1=1.1&r2=1.2
44
45 Index: xfe-1.19.2.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xfe/xfe-1.19.2.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- xfe-1.19.2.ebuild 4 Oct 2008 12:01:45 -0000 1.1
52 +++ xfe-1.19.2.ebuild 5 Aug 2009 12:53:13 -0000 1.2
53 @@ -1,9 +1,8 @@
54 -# Copyright 1999-2008 Gentoo Foundation
55 +# Copyright 1999-2009 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/xfe-1.19.2.ebuild,v 1.1 2008/10/04 12:01:45 mabi Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfe/xfe-1.19.2.ebuild,v 1.2 2009/08/05 12:53:13 ssuominen Exp $
59
60 EAPI=2
61 -
62 inherit eutils
63
64 DESCRIPTION="MS-Explorer-like minimalist file manager for X"
65 @@ -15,16 +14,22 @@
66 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
67 IUSE="debug nls +png"
68
69 -DEPEND="=x11-libs/fox-1.6*[truetype,png?]
70 +RDEPEND="=x11-libs/fox-1.6*[truetype,png?]"
71 +DEPEND="${RDEPEND}
72 nls? ( sys-devel/gettext )"
73
74 -src_compile() {
75 - econf $(use_enable nls) $(use_enable debug)
76 - emake || die "emake failed."
77 +src_prepare() {
78 + epatch "${FILESDIR}"/${P}-gcc44.patch
79 +}
80 +
81 +src_configure() {
82 + econf \
83 + $(use_enable nls) \
84 + $(use_enable debug)
85 }
86
87 src_install() {
88 - emake DESTDIR="${D}" install || die "emake install failed."
89 + emake DESTDIR="${D}" install || die "emake install failed"
90 dodoc AUTHORS BUGS ChangeLog README TODO
91 make_desktop_entry xfe "X File Explorer" xfe "System;FileTools;FileManager"
92 make_desktop_entry xfi "X File Image" xfi "System;FileTools"