Gentoo Archives: gentoo-commits

From: "Mark Loeser (halcy0n)" <halcy0n@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/gcc: ChangeLog gcc-4.4.3.ebuild
Date: Sat, 24 Apr 2010 18:19:06
Message-Id: 20100424181901.19EE92C04C@corvid.gentoo.org
1 halcy0n 10/04/24 18:19:01
2
3 Modified: ChangeLog gcc-4.4.3.ebuild
4 Log:
5 Add ewarn about the use of graphite
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.747 sys-devel/gcc/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.747&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.747&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/gcc/ChangeLog?r1=1.746&r2=1.747
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v
18 retrieving revision 1.746
19 retrieving revision 1.747
20 diff -u -r1.746 -r1.747
21 --- ChangeLog 28 Mar 2010 20:35:46 -0000 1.746
22 +++ ChangeLog 24 Apr 2010 18:19:00 -0000 1.747
23 @@ -1,6 +1,9 @@
24 # ChangeLog for sys-devel/gcc
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.746 2010/03/28 20:35:46 halcy0n Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.747 2010/04/24 18:19:00 halcy0n Exp $
28 +
29 + 24 Apr 2010; Mark Loeser <halcy0n@g.o> gcc-4.4.3.ebuild:
30 + Add ewarn about the use of graphite
31
32 28 Mar 2010; Mark Loeser <halcy0n@g.o> gcc-4.3.4.ebuild,
33 gcc-4.4.3.ebuild:
34
35
36
37 1.4 sys-devel/gcc/gcc-4.4.3.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/gcc/gcc-4.4.3.ebuild?rev=1.4&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/gcc/gcc-4.4.3.ebuild?rev=1.4&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/gcc/gcc-4.4.3.ebuild?r1=1.3&r2=1.4
42
43 Index: gcc-4.4.3.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.4.3.ebuild,v
46 retrieving revision 1.3
47 retrieving revision 1.4
48 diff -u -r1.3 -r1.4
49 --- gcc-4.4.3.ebuild 28 Mar 2010 20:35:46 -0000 1.3
50 +++ gcc-4.4.3.ebuild 24 Apr 2010 18:19:00 -0000 1.4
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.4.3.ebuild,v 1.3 2010/03/28 20:35:46 halcy0n Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.4.3.ebuild,v 1.4 2010/04/24 18:19:00 halcy0n Exp $
56
57 PATCH_VER="1.0"
58 UCLIBC_VER="1.0"
59 @@ -80,3 +80,12 @@
60
61 [[ ${CTARGET} == *-softfloat-* ]] && epatch "${FILESDIR}"/4.4.0/gcc-4.4.0-softfloat.patch
62 }
63 +
64 +pkg_setup() {
65 + gcc_pkg_setup
66 +
67 + if use graphite ; then
68 + ewarn "Graphite support is still experimental and unstable."
69 + ewarn "Any bugs resulting in the use of Graphite will not be fixed"
70 + fi
71 +}