Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/xchat-gnome: ChangeLog xchat-gnome-0.24.1.ebuild
Date: Sat, 29 Nov 2008 22:49:54
Message-Id: E1L6YdM-0004pB-CT@stork.gentoo.org
1 eva 08/11/29 22:49:52
2
3 Modified: ChangeLog xchat-gnome-0.24.1.ebuild
4 Log:
5 Include a check for a recent enough gcc, bug #246990.
6 (Portage version: 2.2_rc16/cvs/Linux 2.6.24-gentoo-r8-mactel x86_64)
7
8 Revision Changes Path
9 1.41 net-irc/xchat-gnome/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.41&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.41&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/xchat-gnome/ChangeLog?r1=1.40&r2=1.41
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v
18 retrieving revision 1.40
19 retrieving revision 1.41
20 diff -u -r1.40 -r1.41
21 --- ChangeLog 21 Nov 2008 22:00:30 -0000 1.40
22 +++ ChangeLog 29 Nov 2008 22:49:52 -0000 1.41
23 @@ -1,6 +1,10 @@
24 # ChangeLog for net-irc/xchat-gnome
25 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.40 2008/11/21 22:00:30 eva Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.41 2008/11/29 22:49:52 eva Exp $
28 +
29 + 29 Nov 2008; Gilles Dartiguelongue <eva@g.o>
30 + xchat-gnome-0.24.1.ebuild:
31 + Include a check for a recent enough gcc, bug #246990.
32
33 21 Nov 2008; Gilles Dartiguelongue <eva@g.o>
34 -files/0.17-segfault-fix.patch,
35
36
37
38 1.3 net-irc/xchat-gnome/xchat-gnome-0.24.1.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.24.1.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.24.1.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.24.1.ebuild?r1=1.2&r2=1.3
43
44 Index: xchat-gnome-0.24.1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.24.1.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -u -r1.2 -r1.3
50 --- xchat-gnome-0.24.1.ebuild 21 Nov 2008 22:00:30 -0000 1.2
51 +++ xchat-gnome-0.24.1.ebuild 29 Nov 2008 22:49:52 -0000 1.3
52 @@ -1,8 +1,8 @@
53 # Copyright 1999-2008 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.24.1.ebuild,v 1.2 2008/11/21 22:00:30 eva Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.24.1.ebuild,v 1.3 2008/11/29 22:49:52 eva Exp $
57
58 -inherit gnome2 eutils
59 +inherit gnome2 eutils toolchain-funcs
60
61 DESCRIPTION="GNOME frontend for the popular X-Chat IRC client"
62 HOMEPAGE="http://xchat-gnome.navi.cx/"
63 @@ -38,6 +38,13 @@
64 # gnome-base/gnome-common is temporarily needed for re-creating configure
65
66 pkg_setup() {
67 + if [[ $(gcc-major-version) -lt 4 || (
68 + $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 1 || (
69 + $(gcc-major-version) -eq 4 && $(gcc-minor-version) -eq 1 && $(gcc-micro-version) -lt 3 ) ) ]]; then
70 + ewarn "${P} requires >=sys-devel/gcc-4.1.3 to compile"
71 + die "Please select >=sys-devel/gcc-4.1.3"
72 + fi
73 +
74 if use sound && ! built_with_use media-libs/libcanberra gtk; then
75 eerror "You need to rebuild media-libs/libcanberra with gtk support."
76 die "Rebuild media-libs/libcanberra with USE='gtk'"