diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2008-02-10 22:08:09 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2008-02-10 22:08:09 +0000 |
commit | fc0eec1da4aa41d0d16a54c1cb42d83b57474594 (patch) | |
tree | be362633a5461c7a097deaa24ed1d7bc27a9287d /dev-python/gnome-python-desktop | |
parent | Initial commit, bug #144042 (diff) | |
download | historical-fc0eec1da4aa41d0d16a54c1cb42d83b57474594.tar.gz historical-fc0eec1da4aa41d0d16a54c1cb42d83b57474594.tar.bz2 historical-fc0eec1da4aa41d0d16a54c1cb42d83b57474594.zip |
* fix python eclass use, bug #207667
Package-Manager: portage-2.1.4.1
Diffstat (limited to 'dev-python/gnome-python-desktop')
-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() { |