diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-04-30 19:17:06 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-04-30 19:17:06 +0000 |
commit | 1dca48de7bf2bee533bc3a88ee357347db6f8ec6 (patch) | |
tree | 7440aed3bf9c9518a697274d3c71540da1a49abb /dev-libs/glib | |
parent | Mask USE="fam" for dev-libs/glib because we prefer native CONFIG_INOTIFY_USER... (diff) | |
download | gentoo-2-1dca48de7bf2bee533bc3a88ee357347db6f8ec6.tar.gz gentoo-2-1dca48de7bf2bee533bc3a88ee357347db6f8ec6.tar.bz2 gentoo-2-1dca48de7bf2bee533bc3a88ee357347db6f8ec6.zip |
Check for CONFIG_INOTIFY_USER wrt #413403
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/glib')
-rw-r--r-- | dev-libs/glib/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/glib/glib-2.32.1.ebuild | 11 |
2 files changed, 12 insertions, 4 deletions
diff --git a/dev-libs/glib/ChangeLog b/dev-libs/glib/ChangeLog index 51def4ade8a6..870170bef124 100644 --- a/dev-libs/glib/ChangeLog +++ b/dev-libs/glib/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/glib # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.519 2012/04/29 15:23:06 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.520 2012/04/30 19:17:06 ssuominen Exp $ + + 30 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> glib-2.32.1.ebuild: + Check for CONFIG_INOTIFY_USER wrt #413403 29 Apr 2012; Markus Meier <maekke@gentoo.org> glib-2.30.3.ebuild: x86 stable, bug #410611 diff --git a/dev-libs/glib/glib-2.32.1.ebuild b/dev-libs/glib/glib-2.32.1.ebuild index 8b1b5fe282cc..9e9b1544b779 100644 --- a/dev-libs/glib/glib-2.32.1.ebuild +++ b/dev-libs/glib/glib-2.32.1.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.32.1.ebuild,v 1.6 2012/04/26 14:14:32 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.32.1.ebuild,v 1.7 2012/04/30 19:17:06 ssuominen Exp $ EAPI="4" PYTHON_DEPEND="utils? 2" # Avoid runtime dependency on python when USE=test -inherit autotools gnome.org libtool eutils flag-o-matic gnome2-utils multilib pax-utils python virtualx +inherit autotools gnome.org libtool eutils flag-o-matic gnome2-utils multilib pax-utils python virtualx linux-info DESCRIPTION="The GLib library of C routines" HOMEPAGE="http://www.gtk.org/" @@ -15,7 +15,7 @@ SRC_URI="${SRC_URI} LICENSE="LGPL-2" SLOT="2" -IUSE="debug doc fam selinux static-libs systemtap test utils xattr" +IUSE="debug doc fam kernel_linux selinux static-libs systemtap test utils xattr" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux" RDEPEND="virtual/libiconv @@ -53,6 +53,11 @@ pkg_setup() { python_set_active_version 2 python_pkg_setup fi + + if use kernel_linux ; then + CONFIG_CHECK="~INOTIFY_USER" + linux-info_pkg_setup + fi } src_prepare() { |