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/glib: ChangeLog glib-2.32.3.ebuild
Date: Thu, 07 Jun 2012 18:13:06
Message-Id: 20120607181242.001032004B@flycatcher.gentoo.org
1 ssuominen 12/06/07 18:12:41
2
3 Modified: ChangeLog glib-2.32.3.ebuild
4 Log:
5 Check if pkg-config binary is working instead of checking if virtual/pkgconfig is installed.
6
7 (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.527 dev-libs/glib/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.527&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.527&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.526&r2=1.527
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
19 retrieving revision 1.526
20 retrieving revision 1.527
21 diff -u -r1.526 -r1.527
22 --- ChangeLog 24 May 2012 13:36:15 -0000 1.526
23 +++ ChangeLog 7 Jun 2012 18:12:41 -0000 1.527
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-libs/glib
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.526 2012/05/24 13:36:15 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.527 2012/06/07 18:12:41 ssuominen Exp $
29 +
30 + 07 Jun 2012; Samuli Suominen <ssuominen@g.o> glib-2.32.3.ebuild:
31 + Check if pkg-config binary is working instead of checking if
32 + virtual/pkgconfig is installed.
33
34 24 May 2012; Samuli Suominen <ssuominen@g.o> glib-2.30.3.ebuild:
35 ppc stable wrt #410611
36
37
38
39 1.2 dev-libs/glib/glib-2.32.3.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.32.3.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.32.3.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.32.3.ebuild?r1=1.1&r2=1.2
44
45 Index: glib-2.32.3.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.32.3.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- glib-2.32.3.ebuild 15 May 2012 06:22:46 -0000 1.1
52 +++ glib-2.32.3.ebuild 7 Jun 2012 18:12:41 -0000 1.2
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.32.3.ebuild,v 1.1 2012/05/15 06:22:46 tetromino Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.32.3.ebuild,v 1.2 2012/06/07 18:12:41 ssuominen Exp $
58
59 EAPI="4"
60 PYTHON_DEPEND="utils? 2"
61 @@ -130,7 +130,7 @@
62 # Avoid circular depend with dev-util/pkgconfig and
63 # native builds (cross-compiles won't need pkg-config
64 # in the target ROOT to work here)
65 - if ! tc-is-cross-compiler && ! has_version virtual/pkgconfig; then
66 + if ! tc-is-cross-compiler && ! $(tc-getPKG_CONFIG) --version >& /dev/null; then
67 if has_version sys-apps/dbus; then
68 export DBUS1_CFLAGS="-I/usr/include/dbus-1.0 -I/usr/$(get_libdir)/dbus-1.0/include"
69 export DBUS1_LIBS="-ldbus-1"