summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2014-05-26 16:46:38 +0000
committerMichał Górny <mgorny@gentoo.org>2014-05-26 16:46:38 +0000
commit7f1e8e7f897ce3e6d70ebfbee04c217909cf5144 (patch)
tree856e4c1570b927f7e4abe0a7d2dbed2903e43f02 /dev-python/gnome-python-desktop-base
parentUse explicit src_configure() instead of G2CONF. (diff)
downloadgentoo-2-7f1e8e7f897ce3e6d70ebfbee04c217909cf5144.tar.gz
gentoo-2-7f1e8e7f897ce3e6d70ebfbee04c217909cf5144.tar.bz2
gentoo-2-7f1e8e7f897ce3e6d70ebfbee04c217909cf5144.zip
Use explicit src_configure() instead of G2CONF.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'dev-python/gnome-python-desktop-base')
-rw-r--r--dev-python/gnome-python-desktop-base/ChangeLog6
-rw-r--r--dev-python/gnome-python-desktop-base/gnome-python-desktop-base-2.32.0-r1.ebuild14
2 files changed, 12 insertions, 8 deletions
diff --git a/dev-python/gnome-python-desktop-base/ChangeLog b/dev-python/gnome-python-desktop-base/ChangeLog
index 8d7d9dcc92e5..0e44f2ab413c 100644
--- a/dev-python/gnome-python-desktop-base/ChangeLog
+++ b/dev-python/gnome-python-desktop-base/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/gnome-python-desktop-base
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-desktop-base/ChangeLog,v 1.51 2014/05/26 16:28:44 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-desktop-base/ChangeLog,v 1.52 2014/05/26 16:46:38 mgorny Exp $
+
+ 26 May 2014; Michał Górny <mgorny@gentoo.org>
+ gnome-python-desktop-base-2.32.0-r1.ebuild:
+ Use explicit src_configure() instead of G2CONF.
*gnome-python-desktop-base-2.32.0-r1 (26 May 2014)
diff --git a/dev-python/gnome-python-desktop-base/gnome-python-desktop-base-2.32.0-r1.ebuild b/dev-python/gnome-python-desktop-base/gnome-python-desktop-base-2.32.0-r1.ebuild
index 2e9e62558f3b..55cdadb3e1bd 100644
--- a/dev-python/gnome-python-desktop-base/gnome-python-desktop-base-2.32.0-r1.ebuild
+++ b/dev-python/gnome-python-desktop-base/gnome-python-desktop-base-2.32.0-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-desktop-base/gnome-python-desktop-base-2.32.0-r1.ebuild,v 1.1 2014/05/26 16:28:44 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-desktop-base/gnome-python-desktop-base-2.32.0-r1.ebuild,v 1.2 2014/05/26 16:46:38 mgorny Exp $
EAPI="5"
GCONF_DEBUG="no"
@@ -32,13 +32,13 @@ DEPEND="${RDEPEND}
RESTRICT="test"
-pkg_setup() {
- DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README"
- G2CONF="${G2CONF} --disable-allbindings"
- python-any-r1_pkg_setup
-}
-
src_prepare() {
gnome2_src_prepare
python_fix_shebang .
}
+
+src_configure() {
+ DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README"
+ gnome2_src_configure \
+ --disable-allbindings
+}