blob: 6485c5d3da3b8fc5967c00cd92c6a07a3153cfba (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyltxml/pyltxml-1.3.ebuild,v 1.4 2005/02/07 04:32:13 fserb Exp $
inherit distutils
S="${WORKDIR}/PyLTXML-${PV}"
DESCRIPTION="Bindings for LTXML libraries"
HOMEPAGE="http://www.ltg.ed.ac.uk/software/xml/"
SRC_URI=ftp://ftp.cogsci.ed.ac.uk/pub/LTXML/PyLTXML-${PV}.tar.gz
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=">=dev-lang/python-2.2.2
>=dev-libs/ltxml-1.2.5"
DOCS="00README"
src_unpack() {
unpack ${A}
cd ${S}
sed -i \
-e s':projects/ltg/projects/lcontrib/include:usr/include:' \
-e s':projects/ltg/projects/lcontrib/lib:usr/lib/ltxml12:' \
setup.py \
|| die "sed failed on setup.py"
}
|