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.3.2.ebuild
Date: Sat, 04 Oct 2008 21:13:31
Message-Id: E1KmERN-0003Sy-91@stork.gentoo.org
1 halcy0n 08/10/04 21:13:29
2
3 Modified: ChangeLog
4 Added: gcc-4.3.2.ebuild
5 Log:
6 Version bump; bug #236199
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.24.5 x86_64)
8
9 Revision Changes Path
10 1.661 sys-devel/gcc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.661&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.661&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/gcc/ChangeLog?r1=1.660&r2=1.661
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v
19 retrieving revision 1.660
20 retrieving revision 1.661
21 diff -u -r1.660 -r1.661
22 --- ChangeLog 19 Aug 2008 18:20:33 -0000 1.660
23 +++ ChangeLog 4 Oct 2008 21:13:28 -0000 1.661
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-devel/gcc
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.660 2008/08/19 18:20:33 yoswink Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.661 2008/10/04 21:13:28 halcy0n Exp $
29 +
30 +*gcc-4.3.2 (04 Oct 2008)
31 +
32 + 04 Oct 2008; Mark Loeser <halcy0n@g.o> +gcc-4.3.2.ebuild:
33 + Version bump; bug #236199
34
35 19 Aug 2008; Jose Luis Rivero <yoswink@g.o> gcc-4.3.1-r1.ebuild:
36 Added ~alpha keyword
37
38
39
40 1.1 sys-devel/gcc/gcc-4.3.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/gcc/gcc-4.3.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/gcc/gcc-4.3.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: gcc-4.3.2.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.3.2.ebuild,v 1.1 2008/10/04 21:13:28 halcy0n Exp $
50
51 PATCH_VER="1.0"
52 UCLIBC_VER="1.0"
53
54 ETYPE="gcc-compiler"
55
56 # whether we should split out specs files for multiple {PIE,SSP}-by-default
57 # and vanilla configurations.
58 SPLIT_SPECS=no #${SPLIT_SPECS-true} hard disable until #106690 is fixed
59
60 inherit toolchain
61
62 DESCRIPTION="The GNU Compiler Collection. Includes C/C++, java compilers, pie+ssp extensions, Haj Ten Brugge runtime bounds checking"
63
64 LICENSE="GPL-2 LGPL-2.1"
65 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
66
67 RDEPEND=">=sys-libs/zlib-1.1.4
68 >=sys-devel/gcc-config-1.4
69 virtual/libiconv
70 >=dev-libs/gmp-4.2.1
71 >=dev-libs/mpfr-2.3
72 !build? (
73 gcj? (
74 gtk? (
75 x11-libs/libXt
76 x11-libs/libX11
77 x11-libs/libXtst
78 x11-proto/xproto
79 x11-proto/xextproto
80 >=x11-libs/gtk+-2.2
81 x11-libs/pango
82 )
83 >=media-libs/libart_lgpl-2.1
84 app-arch/zip
85 app-arch/unzip
86 )
87 >=sys-libs/ncurses-5.2-r2
88 nls? ( sys-devel/gettext )
89 )"
90 DEPEND="${RDEPEND}
91 test? ( sys-devel/autogen dev-util/dejagnu )
92 >=sys-apps/texinfo-4.2-r4
93 >=sys-devel/bison-1.875
94 amd64? ( >=sys-libs/glibc-2.7-r2 )
95 ppc? ( >=${CATEGORY}/binutils-2.17 )
96 ppc64? ( >=${CATEGORY}/binutils-2.17 )
97 >=${CATEGORY}/binutils-2.15.94"
98 PDEPEND=">=sys-devel/gcc-config-1.4"
99 if [[ ${CATEGORY} != cross-* ]] ; then
100 PDEPEND="${PDEPEND} elibc_glibc? ( >=sys-libs/glibc-2.6 )"
101 fi
102
103 src_unpack() {
104 gcc_src_unpack
105
106 use vanilla && return 0
107
108 [[ ${CHOST} == ${CTARGET} ]] && epatch "${FILESDIR}"/gcc-spec-env.patch
109
110 [[ ${CTARGET} == *-softfloat-* ]] && epatch "${FILESDIR}"/4.0.2/gcc-4.0.2-softfloat.patch
111 }