diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2008-02-10 22:04:04 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2008-02-10 22:04:04 +0000 |
commit | b6b49ac1f907a5586e6d44895726b284ef44becf (patch) | |
tree | 0107bdd2aa81ea0c25557dc400efcce31c5384bb /dev-python | |
parent | Initial commit, bug #144042 (diff) | |
download | gentoo-2-b6b49ac1f907a5586e6d44895726b284ef44becf.tar.gz gentoo-2-b6b49ac1f907a5586e6d44895726b284ef44becf.tar.bz2 gentoo-2-b6b49ac1f907a5586e6d44895726b284ef44becf.zip |
* fix python eclass use, bug #207667
(Portage version: 2.1.4.1)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/gnome-python-desktop/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/gnome-python-desktop/gnome-python-desktop-2.20.0.ebuild | 12 |
2 files changed, 16 insertions, 4 deletions
diff --git a/dev-python/gnome-python-desktop/ChangeLog b/dev-python/gnome-python-desktop/ChangeLog index ac6a6b26b5db..6152385f510a 100644 --- a/dev-python/gnome-python-desktop/ChangeLog +++ b/dev-python/gnome-python-desktop/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/gnome-python-desktop -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-desktop/ChangeLog,v 1.47 2007/11/29 05:39:12 jer Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-desktop/ChangeLog,v 1.48 2008/02/10 22:04:04 eva Exp $ + + 10 Feb 2008; Gilles Dartiguelongue <eva@gentoo.org> + gnome-python-desktop-2.20.0.ebuild: + fix python eclass use, bug #207667 29 Nov 2007; Jeroen Roovers <jer@gentoo.org> gnome-python-desktop-2.20.0.ebuild: diff --git a/dev-python/gnome-python-desktop/gnome-python-desktop-2.20.0.ebuild b/dev-python/gnome-python-desktop/gnome-python-desktop-2.20.0.ebuild index b609decf2b21..2c5092e17dde 100644 --- a/dev-python/gnome-python-desktop/gnome-python-desktop-2.20.0.ebuild +++ b/dev-python/gnome-python-desktop/gnome-python-desktop-2.20.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-desktop/gnome-python-desktop-2.20.0.ebuild,v 1.8 2008/01/10 09:45:23 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-desktop/gnome-python-desktop-2.20.0.ebuild,v 1.9 2008/02/10 22:04:04 eva Exp $ inherit gnome2 python virtualx @@ -38,8 +38,16 @@ DEPEND="${RDEPEND} DOCS="AUTHORS ChangeLog INSTALL MAINTAINERS NEWS README" +src_unpack() { + gnome2_src_unpack + + # disable pyc compiling + mv py-compile py-compile.orig + ln -s $(type -P true) py-compile +} + src_test() { - Xmake check || die "tests failed" + Xemake check || die "tests failed" } src_install() { |