diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-01-22 20:43:12 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-01-22 20:43:12 +0000 |
commit | f802f25ad45874012a88122340deb22caf5cdfcc (patch) | |
tree | d972889c054ca09a2eb723e3a33ff54a5b6b9345 | |
parent | Fix build failure on non-KVM targets. (diff) | |
download | gentoo-2-f802f25ad45874012a88122340deb22caf5cdfcc.tar.gz gentoo-2-f802f25ad45874012a88122340deb22caf5cdfcc.tar.bz2 gentoo-2-f802f25ad45874012a88122340deb22caf5cdfcc.zip |
Enable introspection by default.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
-rw-r--r-- | x11-libs/libdesktop-agnostic/ChangeLog | 8 | ||||
-rw-r--r-- | x11-libs/libdesktop-agnostic/libdesktop-agnostic-0.3.92.ebuild | 17 |
2 files changed, 16 insertions, 9 deletions
diff --git a/x11-libs/libdesktop-agnostic/ChangeLog b/x11-libs/libdesktop-agnostic/ChangeLog index a888cf549cdc..3992224f0225 100644 --- a/x11-libs/libdesktop-agnostic/ChangeLog +++ b/x11-libs/libdesktop-agnostic/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-libs/libdesktop-agnostic -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libdesktop-agnostic/ChangeLog,v 1.3 2011/05/24 15:49:00 angelos Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libdesktop-agnostic/ChangeLog,v 1.4 2012/01/22 20:43:12 ssuominen Exp $ + + 22 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> + libdesktop-agnostic-0.3.92.ebuild: + Enable introspection by default. 24 May 2011; Christoph Mende <angelos@gentoo.org> libdesktop-agnostic-0.3.92.ebuild: diff --git a/x11-libs/libdesktop-agnostic/libdesktop-agnostic-0.3.92.ebuild b/x11-libs/libdesktop-agnostic/libdesktop-agnostic-0.3.92.ebuild index f756c2a5eb82..12ad34b308bd 100644 --- a/x11-libs/libdesktop-agnostic/libdesktop-agnostic-0.3.92.ebuild +++ b/x11-libs/libdesktop-agnostic/libdesktop-agnostic-0.3.92.ebuild @@ -1,9 +1,11 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libdesktop-agnostic/libdesktop-agnostic-0.3.92.ebuild,v 1.3 2011/05/24 15:49:00 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libdesktop-agnostic/libdesktop-agnostic-0.3.92.ebuild,v 1.4 2012/01/22 20:43:12 ssuominen Exp $ + +EAPI=4 + +PYTHON_DEPEND="2:2.7" -EAPI=3 -PYTHON_DEPEND="2" inherit python waf-utils DESCRIPTION="A desktop-agnostic library for GLib-based projects" @@ -13,9 +15,9 @@ SRC_URI="http://launchpad.net/${PN}/0.4/${PV}/+download/${P}.tar.gz" LICENSE="GPL-2 LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="debug +gconf glade gnome introspection" +IUSE="debug +gconf glade gnome +introspection" -RDEPEND="dev-libs/glib:2 +RDEPEND=">=dev-libs/glib-2 dev-python/pygobject:2 dev-python/pygtk:2 x11-libs/gtk+:2 @@ -29,6 +31,7 @@ DEPEND="${RDEPEND} pkg_setup() { python_set_active_version 2 + python_pkg_setup } src_configure() { @@ -40,7 +43,7 @@ src_configure() { use glade && myconf="${myconf} --enable-glade" use introspection || myconf="${myconf} --disable-gi" - VALAC=$(type -p valac-0.10) \ + VALAC=$(type -P valac-0.10) \ waf-utils_src_configure \ --sysconfdir="${EPREFIX}"/etc \ --config-backends=${cfg} \ |