blob: 682c58587766a4994a9c444c9cdd6e5b280902f6 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/4suite/4suite-0.11.1.ebuild,v 1.4 2004/06/25 01:25:45 agriffis Exp $
inherit distutils
MY_P=${P/4s/4S}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Python tools for XML processing and object-databases."
SRC_URI="ftp://ftp.4suite.org/pub/4Suite/old/4Suite/${PV}/${MY_P}.tar.gz"
HOMEPAGE="http://www.4suite.org/"
DEPEND="virtual/python
>=dev-python/pyxml-0.6.5"
IUSE=""
SLOT="0"
KEYWORDS="x86 sparc alpha ~ppc"
LICENSE="Apache-1.1"
PYTHON_MODNAME="Ft _xmlplus"
src_install() {
distutils_src_install
rm -rf ${D}/usr/share/doc/${PF}
mv ${D}/usr/doc/${MY_P} ${D}/usr/share/doc/${PF}
}
|