Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/expat: ChangeLog expat-2.0.1-r6.ebuild
Date: Tue, 28 Feb 2012 10:35:51
Message-Id: 20120228103534.319A82004B@flycatcher.gentoo.org
1 ssuominen 12/02/28 10:35:34
2
3 Modified: ChangeLog expat-2.0.1-r6.ebuild
4 Log:
5 Ensure system CFLAGS get respected also in the libexpatw build wrt #406059
6
7 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.112 dev-libs/expat/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/expat/ChangeLog?rev=1.112&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/expat/ChangeLog?rev=1.112&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/expat/ChangeLog?r1=1.111&r2=1.112
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/expat/ChangeLog,v
19 retrieving revision 1.111
20 retrieving revision 1.112
21 diff -u -r1.111 -r1.112
22 --- ChangeLog 27 Feb 2012 15:17:31 -0000 1.111
23 +++ ChangeLog 28 Feb 2012 10:35:34 -0000 1.112
24 @@ -1,6 +1,9 @@
25 # ChangeLog for dev-libs/expat
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/ChangeLog,v 1.111 2012/02/27 15:17:31 ago Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/ChangeLog,v 1.112 2012/02/28 10:35:34 ssuominen Exp $
29 +
30 + 28 Feb 2012; Samuli Suominen <ssuominen@g.o> expat-2.0.1-r6.ebuild:
31 + Ensure system CFLAGS get respected also in the libexpatw build wrt #406059
32
33 27 Feb 2012; Agostino Sarubbo <ago@g.o> expat-2.0.1-r6.ebuild:
34 Stable for amd64, wrt bug #405915
35
36
37
38 1.4 dev-libs/expat/expat-2.0.1-r6.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/expat/expat-2.0.1-r6.ebuild?rev=1.4&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/expat/expat-2.0.1-r6.ebuild?rev=1.4&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/expat/expat-2.0.1-r6.ebuild?r1=1.3&r2=1.4
43
44 Index: expat-2.0.1-r6.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-libs/expat/expat-2.0.1-r6.ebuild,v
47 retrieving revision 1.3
48 retrieving revision 1.4
49 diff -u -r1.3 -r1.4
50 --- expat-2.0.1-r6.ebuild 27 Feb 2012 15:17:31 -0000 1.3
51 +++ expat-2.0.1-r6.ebuild 28 Feb 2012 10:35:34 -0000 1.4
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/expat-2.0.1-r6.ebuild,v 1.3 2012/02/27 15:17:31 ago Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/expat/expat-2.0.1-r6.ebuild,v 1.4 2012/02/28 10:35:34 ssuominen Exp $
57
58 EAPI=4
59 inherit eutils libtool toolchain-funcs
60 @@ -35,11 +35,11 @@
61
62 if use unicode; then
63 pushd "${S}"-buildu >/dev/null
64 - CPPFLAGS+=" -DXML_UNICODE" ECONF_SOURCE="${S}" econf ${myconf}
65 + CPPFLAGS="${CPPFLAGS} -DXML_UNICODE" ECONF_SOURCE="${S}" econf ${myconf}
66 popd >/dev/null
67
68 pushd "${S}"-buildw >/dev/null
69 - CFLAGS+=" -fshort-wchar" CPPFLAGS+=" -DXML_UNICODE_WCHAR_T" ECONF_SOURCE="${S}" econf ${myconf}
70 + CFLAGS="${CFLAGS} -fshort-wchar" CPPFLAGS="${CPPFLAGS} -DXML_UNICODE_WCHAR_T" ECONF_SOURCE="${S}" econf ${myconf}
71 popd >/dev/null
72 fi
73 }