blob: 8b141398e48f5746a19ee3ccc67a3b63f2b57b6f (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-1.0.ebuild,v 1.1 2006/06/02 14:02:56 lucass Exp $
inherit distutils eutils
DESCRIPTION="lxml is a Pythonic binding for the libxml2 and libxslt libraries"
HOMEPAGE="http://codespeak.net/lxml/"
SRC_URI="http://codespeak.net/lxml/${P}.tgz"
LICENSE="BSD GPL-2 as-is"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~x86"
IUSE=""
DEPEND=">=dev-libs/libxml2-2.6.16
>=dev-libs/libxslt-1.1.12
>=dev-python/pyrex-0.9.3
virtual/python"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-distutils.diff
}
src_test() {
make test
}
src_install() {
distutils_src_install
dohtml doc/html/*
dodoc *.txt
docinto doc
dodoc doc/*.txt
docinto doc/licenses
dodoc doc/licenses/*
insinto /usr/share/doc/${PF}
doins -r samples
}
|