diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-03-12 12:58:47 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-03-12 12:58:47 +0000 |
commit | 152ab943aa8854959a5f6dd4f2bfcc9c9462b3df (patch) | |
tree | 0831a29c47b606055ad7e608848fa82428de6df9 /net-im/pebrot/pebrot-0.8.9.ebuild | |
parent | Remove blocker against app-editors/emacs-23.3. (diff) | |
download | gentoo-2-152ab943aa8854959a5f6dd4f2bfcc9c9462b3df.tar.gz gentoo-2-152ab943aa8854959a5f6dd4f2bfcc9c9462b3df.tar.bz2 gentoo-2-152ab943aa8854959a5f6dd4f2bfcc9c9462b3df.zip |
Use Python 2 (bug #315107).
(Portage version: 2.2.0_alpha26_p15/cvs/Linux x86_64)
Diffstat (limited to 'net-im/pebrot/pebrot-0.8.9.ebuild')
-rw-r--r-- | net-im/pebrot/pebrot-0.8.9.ebuild | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/net-im/pebrot/pebrot-0.8.9.ebuild b/net-im/pebrot/pebrot-0.8.9.ebuild index 0cea189d7a18..838dcbfdeccc 100644 --- a/net-im/pebrot/pebrot-0.8.9.ebuild +++ b/net-im/pebrot/pebrot-0.8.9.ebuild @@ -1,18 +1,28 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/pebrot/pebrot-0.8.9.ebuild,v 1.2 2009/05/31 23:39:48 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/pebrot/pebrot-0.8.9.ebuild,v 1.3 2011/03/12 12:58:47 arfrever Exp $ + +EAPI="3" +PYTHON_DEPEND="2" inherit distutils DESCRIPTION="curses-based MSN client" HOMEPAGE="http://pebrot.sourceforge.net" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -IUSE="" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" -DEPEND=">=dev-lang/python-2.2" +DEPEND="" +RDEPEND="" DOCS="AUTHORS README PKG-INFO INSTALL ChangeLog COPYING" +PYTHON_MODNAME="pypebrot" + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} |