diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-05-26 16:47:04 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-05-26 16:47:04 +0000 |
commit | 171a99c55e69d30e57af1dc3244c897fff590fd9 (patch) | |
tree | 4b925bf449d7697047b736a641c76c0a305ee2f5 /dev-python/gnome-python-extras-base | |
parent | Use explicit src_configure() instead of G2CONF. (diff) | |
download | gentoo-2-171a99c55e69d30e57af1dc3244c897fff590fd9.tar.gz gentoo-2-171a99c55e69d30e57af1dc3244c897fff590fd9.tar.bz2 gentoo-2-171a99c55e69d30e57af1dc3244c897fff590fd9.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-extras-base')
-rw-r--r-- | dev-python/gnome-python-extras-base/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/gnome-python-extras-base/gnome-python-extras-base-2.25.3-r1.ebuild | 12 |
2 files changed, 11 insertions, 7 deletions
diff --git a/dev-python/gnome-python-extras-base/ChangeLog b/dev-python/gnome-python-extras-base/ChangeLog index 7553384d981a..513bf9d332fa 100644 --- a/dev-python/gnome-python-extras-base/ChangeLog +++ b/dev-python/gnome-python-extras-base/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/gnome-python-extras-base # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-extras-base/ChangeLog,v 1.26 2014/05/26 16:29:55 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-extras-base/ChangeLog,v 1.27 2014/05/26 16:47:04 mgorny Exp $ + + 26 May 2014; Michał Górny <mgorny@gentoo.org> + gnome-python-extras-base-2.25.3-r1.ebuild: + Use explicit src_configure() instead of G2CONF. *gnome-python-extras-base-2.25.3-r1 (26 May 2014) diff --git a/dev-python/gnome-python-extras-base/gnome-python-extras-base-2.25.3-r1.ebuild b/dev-python/gnome-python-extras-base/gnome-python-extras-base-2.25.3-r1.ebuild index 09048f33daae..6cf13c899923 100644 --- a/dev-python/gnome-python-extras-base/gnome-python-extras-base-2.25.3-r1.ebuild +++ b/dev-python/gnome-python-extras-base/gnome-python-extras-base-2.25.3-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-extras-base/gnome-python-extras-base-2.25.3-r1.ebuild,v 1.1 2014/05/26 16:29:55 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-extras-base/gnome-python-extras-base-2.25.3-r1.ebuild,v 1.2 2014/05/26 16:47:04 mgorny Exp $ EAPI="5" PYTHON_COMPAT=( python2_7 ) @@ -35,14 +35,14 @@ S="${WORKDIR}/${MY_PN}-${PV}" DOCS="AUTHORS COPYING* ChangeLog INSTALL NEWS README" -pkg_setup() { - G2CONF="${G2CONF} --disable-allbindings" - python-any-r1_pkg_setup -} - src_prepare() { epatch "${FILESDIR}/${P}-python-libs.patch" #344231 sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die eautoreconf gnome2_src_prepare } + +src_configure() { + gnome2_src_configure \ + --disable-allbindings +} |