blob: 6dc7329f866cf90f5ebacf7514b10a32c5351ad8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# 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.2.ebuild,v 1.2 2008/03/16 23:09:33 jer 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 ~ppc ~x86"
IUSE="doc examples"
# Note: This version comes with it's own bundled svn version of pyrex
RDEPEND=">=dev-libs/libxml2-2.6.20
>=dev-libs/libxslt-1.1.15"
DEPEND="${RDEPEND}
>=dev-python/setuptools-0.6_rc5
>=dev-python/cython-0.9.6.12"
src_compile () {
rm ${S}/src/lxml/lxml.*.c
#epatch "${FILESDIR}/parse-gtk-problem.patch"
epatch "${FILESDIR}/gtk-threading-filename-guessing.patch"
distutils_src_compile
}
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"
}
|