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.1.ebuild
Date: Mon, 30 Apr 2012 19:17:22
Message-Id: 20120430191707.16F762004B@flycatcher.gentoo.org
1 ssuominen 12/04/30 19:17:07
2
3 Modified: ChangeLog glib-2.32.1.ebuild
4 Log:
5 Check for CONFIG_INOTIFY_USER wrt #413403
6
7 (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.520 dev-libs/glib/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.520&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?rev=1.520&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/ChangeLog?r1=1.519&r2=1.520
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v
19 retrieving revision 1.519
20 retrieving revision 1.520
21 diff -u -r1.519 -r1.520
22 --- ChangeLog 29 Apr 2012 15:23:06 -0000 1.519
23 +++ ChangeLog 30 Apr 2012 19:17:06 -0000 1.520
24 @@ -1,6 +1,9 @@
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.519 2012/04/29 15:23:06 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.520 2012/04/30 19:17:06 ssuominen Exp $
29 +
30 + 30 Apr 2012; Samuli Suominen <ssuominen@g.o> glib-2.32.1.ebuild:
31 + Check for CONFIG_INOTIFY_USER wrt #413403
32
33 29 Apr 2012; Markus Meier <maekke@g.o> glib-2.30.3.ebuild:
34 x86 stable, bug #410611
35
36
37
38 1.7 dev-libs/glib/glib-2.32.1.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.32.1.ebuild?rev=1.7&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.32.1.ebuild?rev=1.7&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/glib/glib-2.32.1.ebuild?r1=1.6&r2=1.7
43
44 Index: glib-2.32.1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.32.1.ebuild,v
47 retrieving revision 1.6
48 retrieving revision 1.7
49 diff -u -r1.6 -r1.7
50 --- glib-2.32.1.ebuild 26 Apr 2012 14:14:32 -0000 1.6
51 +++ glib-2.32.1.ebuild 30 Apr 2012 19:17:06 -0000 1.7
52 @@ -1,12 +1,12 @@
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/glib/glib-2.32.1.ebuild,v 1.6 2012/04/26 14:14:32 aballier Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.32.1.ebuild,v 1.7 2012/04/30 19:17:06 ssuominen Exp $
57
58 EAPI="4"
59 PYTHON_DEPEND="utils? 2"
60 # Avoid runtime dependency on python when USE=test
61
62 -inherit autotools gnome.org libtool eutils flag-o-matic gnome2-utils multilib pax-utils python virtualx
63 +inherit autotools gnome.org libtool eutils flag-o-matic gnome2-utils multilib pax-utils python virtualx linux-info
64
65 DESCRIPTION="The GLib library of C routines"
66 HOMEPAGE="http://www.gtk.org/"
67 @@ -15,7 +15,7 @@
68
69 LICENSE="LGPL-2"
70 SLOT="2"
71 -IUSE="debug doc fam selinux static-libs systemtap test utils xattr"
72 +IUSE="debug doc fam kernel_linux selinux static-libs systemtap test utils xattr"
73 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
74
75 RDEPEND="virtual/libiconv
76 @@ -53,6 +53,11 @@
77 python_set_active_version 2
78 python_pkg_setup
79 fi
80 +
81 + if use kernel_linux ; then
82 + CONFIG_CHECK="~INOTIFY_USER"
83 + linux-info_pkg_setup
84 + fi
85 }
86
87 src_prepare() {