diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-08-04 03:30:06 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-08-04 03:30:06 +0000 |
commit | 1db7b79f32b99007c7d37a3ab354e3f0e13a1d42 (patch) | |
tree | e11d33e7181c0d9d338a47b0521ebb223aa162ae /dev-python/kiwi/kiwi-1.9.26.ebuild | |
parent | Version bump (bug #279722). Set SUPPORT_PYTHON_ABIS. (diff) | |
download | gentoo-2-1db7b79f32b99007c7d37a3ab354e3f0e13a1d42.tar.gz gentoo-2-1db7b79f32b99007c7d37a3ab354e3f0e13a1d42.tar.bz2 gentoo-2-1db7b79f32b99007c7d37a3ab354e3f0e13a1d42.zip |
Version bump (bug #279578). Set SUPPORT_PYTHON_ABIS.
(Portage version: 13887-svn/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/kiwi/kiwi-1.9.26.ebuild')
-rw-r--r-- | dev-python/kiwi/kiwi-1.9.26.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-python/kiwi/kiwi-1.9.26.ebuild b/dev-python/kiwi/kiwi-1.9.26.ebuild new file mode 100644 index 000000000000..57b09dce5021 --- /dev/null +++ b/dev-python/kiwi/kiwi-1.9.26.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/kiwi/kiwi-1.9.26.ebuild,v 1.1 2009/08/04 03:30:06 arfrever Exp $ + +NEED_PYTHON="2.3" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils versionator + +DESCRIPTION="Kiwi is a pure Python framework and set of enhanced PyGTK widgets" +HOMEPAGE="http://www.async.com.br/projects/kiwi/" +SRC_URI="http://download.gnome.org/sources/${PN}/$(get_version_component_range 1-2)/${P}.tar.gz" +LICENSE="LGPL-2.1" +SLOT="0" + +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="examples" + +DEPEND="dev-python/pygtk" +RDEPEND="${DEPEND}" + +RESTRICT_PYTHON_ABIS="3*" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i \ + -e "s:share/doc/kiwi:share/doc/${PF}:g" \ + setup.py || die "sed failed" +} + +src_install() { + distutils_src_install + + if use examples ; then + insinto /usr/share/doc/${PF} + doins -r examples + fi +} |