blob: f825728404809361fc5dd4d1608579366d31eb31 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/xsv/xsv-2.7.ebuild,v 1.4 2005/05/15 20:56:59 kloeri Exp $
inherit distutils
MY_P=${P/xsv/XSV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Python XML Schema Validator"
SRC_URI="ftp://ftp.cogsci.ed.ac.uk/pub/XSV/${MY_P}.tar.gz"
HOMEPAGE="http://www.ltg.ed.ac.uk/~ht/xsv-status.html"
KEYWORDS="~ppc x86"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
DEPEND=">=dev-lang/python-2.2.2
>=dev-python/pyltxml-1.3"
src_install() {
distutils_src_install
distutils_python_version
dodoc xsv-status.xml pc-shrinkwrap
dohtml xsv-status.html
rm -rf ${D}/usr/lib/python${PYVER}/site-packages/XSV/doc
mv ${D}/usr/lib/python${PYVER}/site-packages/XSV/example ${D}/usr/share/doc/${PF}
}
|