diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-05-21 14:48:04 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-05-21 14:48:04 +0200 |
commit | fd098818511144dc3ee3f97a9eaf8e5ceb933d4f (patch) | |
tree | 281be9e10318bfd6725e15e5b61858d90b7ec41b /dev-python/lxml/lxml-2.0.4.ebuild | |
parent | 5a3e7b4cf6d0715deb2ff4e0b57f51c0139e87ef (diff) | |
download | overlay-fd098818511144dc3ee3f97a9eaf8e5ceb933d4f.tar.gz overlay-fd098818511144dc3ee3f97a9eaf8e5ceb933d4f.tar.bz2 overlay-fd098818511144dc3ee3f97a9eaf8e5ceb933d4f.zip |
Updated lxml
Diffstat (limited to 'dev-python/lxml/lxml-2.0.4.ebuild')
-rw-r--r-- | dev-python/lxml/lxml-2.0.4.ebuild | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/dev-python/lxml/lxml-2.0.4.ebuild b/dev-python/lxml/lxml-2.0.4.ebuild deleted file mode 100644 index bb9d4c0..0000000 --- a/dev-python/lxml/lxml-2.0.4.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-2.0.3.ebuild,v 1.4 2008/04/08 09:38:57 armin76 Exp $ - -NEED_PYTHON="2.3" - -inherit distutils eutils multilib - -DESCRIPTION="A Pythonic binding for the libxml2 and libxslt libraries" -HOMEPAGE="http://codespeak.net/lxml/" -SRC_URI="http://codespeak.net/lxml/${P}.tgz" -LICENSE="BSD ElementTree GPL-2 PSF-2.4" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~ia64 ~ppc64 ~x86" -IUSE="doc examples" - -RDEPEND=">=dev-libs/libxml2-2.6.20 - >=dev-libs/libxslt-1.1.15" -DEPEND="${RDEPEND} - >=dev-python/cython-0.9.6.10 - >=dev-python/setuptools-0.6_rc5" - -src_unpack() { - unpack ${A} - cd "${S}" - - # Use cython instead of own bundled version of pyrex - epatch "${FILESDIR}/${PN}-2.0.3-no-fake-pyrex.patch" -} - -src_install() { - distutils_src_install - - if use doc; then - dohtml doc/html/* - dodoc *.txt - docinto doc - dodoc doc/*.txt - fi - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins -r samples/* - fi -} - -src_test() { - distutils_python_version - python setup.py build_ext -i || die "building extensions for test use failed" - einfo "Running test" - "${python}" test.py || die "tests failed" - export PYTHONPATH="${PYTHONPATH}:${S}/src" - einfo "Running selftest" - "${python}" selftest.py || die "selftest failed" - einfo "Running selftest2" - "${python}" selftest2.py || die "selftest2 failed" -} |