diff options
Diffstat (limited to 'dev-python/cython/cython-0.11.3.ebuild')
-rw-r--r-- | dev-python/cython/cython-0.11.3.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/dev-python/cython/cython-0.11.3.ebuild b/dev-python/cython/cython-0.11.3.ebuild deleted file mode 100644 index c57990307e5b..000000000000 --- a/dev-python/cython/cython-0.11.3.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cython/cython-0.11.3.ebuild,v 1.8 2009/12/29 17:24:00 armin76 Exp $ - -EAPI="2" -SUPPORT_PYTHON_ABIS="1" - -inherit distutils flag-o-matic - -MY_PN="Cython" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="A language for writing Python extension modules based on pyrex" -HOMEPAGE="http://www.cython.org/ http://pypi.python.org/pypi/Cython" -SRC_URI="http://pypi.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz - http://www.cython.org/${MY_P}.tar.gz" - -LICENSE="PSF-2.4" -SLOT="0" -KEYWORDS="amd64 ~arm hppa ia64 ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="doc examples" - -DEPEND="" -RDEPEND="" -RESTRICT_PYTHON_ABIS="3.*" - -S="${WORKDIR}/${MY_P}" - -PYTHON_MODNAME="${MY_PN} pyximport" -DOCS="ToDo.txt USAGE.txt" - -pkg_setup() { - if use amd64; then - # Tests fail with some optimizations. - replace-flags -O[2-9s]* -O1 - fi -} - -src_test() { - python_execute_function -d -} - -src_install() { - distutils_src_install - - # -A c switch is for Doc/primes.c - use doc && dohtml -A c -r Doc/* - - if use examples; then - # Demos/ has files with .so,~ suffixes. - # So we have to specify precisely what to install. - insinto /usr/share/doc/${PF}/examples - doins Demos/Makefile* Demos/setup.py Demos/*.{py,pyx} - fi -} |