blob: e84aa9960c0af3a2d1699beaa44aec92875c262a (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# 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.8 2002/12/15 10:44:18 bjb Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Python tools for XML processing and object-databases."
SRC_URI="ftp://ftp.fourthought.com/pub/4Suite/${P}.tar.gz"
HOMEPAGE="http://www.4suite.org/"
DEPEND="virtual/python
>=dev-python/PyXML-0.6.5"
RDEPEND="${RDEPEND}"
SLOT="0"
KEYWORDS="x86 sparc alpha"
LICENSE="as-is"
src_compile() {
python setup.py build || die
}
src_install() {
python setup.py install --prefix=${D}/usr || die
dodoc COPYRIGHT README* ReleaseNotes
}
|