diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2009-11-23 20:47:51 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2009-11-23 20:47:51 +0000 |
commit | cfab2219e6e9e82645adb2d66fc2308843608108 (patch) | |
tree | d785031d8fd0c8d73f02947f9ce6c5bc2bf2f563 /app-text/gnome-doc-utils | |
parent | arm stable, bug #286074 (diff) | |
download | gentoo-2-cfab2219e6e9e82645adb2d66fc2308843608108.tar.gz gentoo-2-cfab2219e6e9e82645adb2d66fc2308843608108.tar.bz2 gentoo-2-cfab2219e6e9e82645adb2d66fc2308843608108.zip |
Kill generation of *.py{c,o} at build time, bug #294140.
(Portage version: 2.2_rc51/cvs/Linux x86_64)
Diffstat (limited to 'app-text/gnome-doc-utils')
-rw-r--r-- | app-text/gnome-doc-utils/ChangeLog | 6 | ||||
-rw-r--r-- | app-text/gnome-doc-utils/gnome-doc-utils-0.18.1.ebuild | 14 |
2 files changed, 16 insertions, 4 deletions
diff --git a/app-text/gnome-doc-utils/ChangeLog b/app-text/gnome-doc-utils/ChangeLog index 648e702c66c0..75bab4fe54f9 100644 --- a/app-text/gnome-doc-utils/ChangeLog +++ b/app-text/gnome-doc-utils/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-text/gnome-doc-utils # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-doc-utils/ChangeLog,v 1.148 2009/11/21 10:05:44 mrpouet Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-doc-utils/ChangeLog,v 1.149 2009/11/23 20:47:51 eva Exp $ + + 23 Nov 2009; Gilles Dartiguelongue <eva@gentoo.org> + gnome-doc-utils-0.18.1.ebuild: + Kill generation of *.py{c,o} at build time, bug #294140. *gnome-doc-utils-0.18.1 (21 Nov 2009) diff --git a/app-text/gnome-doc-utils/gnome-doc-utils-0.18.1.ebuild b/app-text/gnome-doc-utils/gnome-doc-utils-0.18.1.ebuild index f58e9ab56588..5c1e4fe37f5a 100644 --- a/app-text/gnome-doc-utils/gnome-doc-utils-0.18.1.ebuild +++ b/app-text/gnome-doc-utils/gnome-doc-utils-0.18.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-doc-utils/gnome-doc-utils-0.18.1.ebuild,v 1.1 2009/11/21 10:05:44 mrpouet Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-doc-utils/gnome-doc-utils-0.18.1.ebuild,v 1.2 2009/11/23 20:47:51 eva Exp $ EAPI="2" @@ -29,12 +29,20 @@ DOCS="AUTHORS ChangeLog NEWS README" # FIXME: Highly broken with parallel make, see bug #286889 MAKEOPTS="${MAKEOPTS} -j1" +# If there is a need to reintroduce eautomake or eautoreconf, make sure +# to AT_M4DIR="tools m4", bug #224609 (m4 removes glib build time dep) + pkg_setup() { G2CONF="${G2CONF} --disable-scrollkeeper" } -# If there is a need to reintroduce eautomake or eautoreconf, make sure -# to AT_M4DIR="tools m4", bug #224609 (m4 removes glib build time dep) +src_prepare() { + gnome2_src_prepare + + # disable pyc compiling + mv py-compile py-compile.orig + ln -s $(type -P true) py-compile +} pkg_postinst() { python_need_rebuild |