diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-03-11 18:51:48 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-03-11 18:51:48 +0000 |
commit | 135599bfc3b053c312d59746012b39e70ce1d970 (patch) | |
tree | 7d8ea8b657a73a47821da35d5d59e0ca82413fe6 /media-sound | |
parent | x86 stable per bug 356183 (diff) | |
download | gentoo-2-135599bfc3b053c312d59746012b39e70ce1d970.tar.gz gentoo-2-135599bfc3b053c312d59746012b39e70ce1d970.tar.bz2 gentoo-2-135599bfc3b053c312d59746012b39e70ce1d970.zip |
Use Python 2 (bug #313953).
(Portage version: 2.2.0_alpha26_p15/cvs/Linux x86_64)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/jokosher/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/jokosher/jokosher-0.11.1.ebuild | 20 |
2 files changed, 22 insertions, 6 deletions
diff --git a/media-sound/jokosher/ChangeLog b/media-sound/jokosher/ChangeLog index 790df7d70fe1..a3fae433f517 100644 --- a/media-sound/jokosher/ChangeLog +++ b/media-sound/jokosher/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/jokosher -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/jokosher/ChangeLog,v 1.10 2010/07/06 15:12:04 arfrever Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/jokosher/ChangeLog,v 1.11 2011/03/11 18:51:48 arfrever Exp $ + + 11 Mar 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + jokosher-0.11.1.ebuild: + Use Python 2 (bug #313953). 06 Jul 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> jokosher-0.11.1.ebuild: diff --git a/media-sound/jokosher/jokosher-0.11.1.ebuild b/media-sound/jokosher/jokosher-0.11.1.ebuild index 361494bb5320..b594417d78c5 100644 --- a/media-sound/jokosher/jokosher-0.11.1.ebuild +++ b/media-sound/jokosher/jokosher-0.11.1.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/jokosher/jokosher-0.11.1.ebuild,v 1.4 2010/07/06 15:12:04 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/jokosher/jokosher-0.11.1.ebuild,v 1.5 2011/03/11 18:51:48 arfrever Exp $ +EAPI="3" PYTHON_DEPEND="2" + inherit eutils gnome2 distutils DESCRIPTION="A simple yet powerful multi-track studio" @@ -39,11 +41,21 @@ DEPEND="${RDEPEND} PYTHON_MODNAME="Jokosher" -src_unpack() { - gnome2_src_unpack +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} + +src_prepare() { + gnome2_src_prepare epatch "${FILESDIR}"/${P}-update-database.patch } +src_configure() { + # Don't run gnome2_src_configure(). + : +} + pkg_postinst() { distutils_pkg_postinst gnome2_pkg_postinst |