diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-10-24 20:18:43 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-10-24 20:18:43 +0000 |
commit | 8150c05cd07c0034414e35e98cd9f7e3ded17887 (patch) | |
tree | 855d74da9c852da728c38948bef4ad1651ef4d5f /net-zope/zope-hookable/zope-hookable-3.4.1.ebuild | |
parent | ppc stable #289821 (diff) | |
download | gentoo-2-8150c05cd07c0034414e35e98cd9f7e3ded17887.tar.gz gentoo-2-8150c05cd07c0034414e35e98cd9f7e3ded17887.tar.bz2 gentoo-2-8150c05cd07c0034414e35e98cd9f7e3ded17887.zip |
Initial addition.
(Portage version: 14724-svn/cvs/Linux x86_64)
Diffstat (limited to 'net-zope/zope-hookable/zope-hookable-3.4.1.ebuild')
-rw-r--r-- | net-zope/zope-hookable/zope-hookable-3.4.1.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/net-zope/zope-hookable/zope-hookable-3.4.1.ebuild b/net-zope/zope-hookable/zope-hookable-3.4.1.ebuild new file mode 100644 index 000000000000..8617c23dd74a --- /dev/null +++ b/net-zope/zope-hookable/zope-hookable-3.4.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-zope/zope-hookable/zope-hookable-3.4.1.ebuild,v 1.1 2009/10/24 20:18:43 arfrever Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +MY_PN="${PN/-/.}" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Zope hookable" +HOMEPAGE="http://pypi.python.org/pypi/zope.hookable" +SRC_URI="http://pypi.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="ZPL" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="dev-python/setuptools" +RDEPEND="" +RESTRICT_PYTHON_ABIS="3.*" + +S="${WORKDIR}/${MY_P}" + +PYTHON_MODNAME="${PN/-//}" +DOCS="CHANGES.txt README.txt" + +src_install() { + distutils_src_install + + # Don't install C sources. + find "${D}" -name "*.c" | xargs rm -f +} |