blob: 9ad684a5004f549c7c72cb282e9d780ef381de24 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/4suite/4suite-1.0_beta1.ebuild,v 1.4 2005/10/02 14:05:11 agriffis Exp $
inherit distutils eutils
MY_P=${P/_beta/b}
MY_P=${MY_P/4s/4S}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Python tools for XML processing and object-databases."
SRC_URI="mirror://sourceforge/foursuite/${MY_P}.tar.bz2"
HOMEPAGE="http://www.4suite.org/"
DEPEND=">=dev-lang/python-2.3
>=dev-python/pyxml-0.8.3"
IUSE="doc"
SLOT="0"
KEYWORDS="alpha ~amd64 ia64 ~ppc ~sparc ~x86"
LICENSE="Apache-1.1"
PYTHON_MODNAME="Ft"
DOCS="docs/*.txt"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/4S-1.0_a4.addrootopt-gentoo.diff
python setup.py config --prefix=/usr --docdir=/usr/share/doc/${P}
}
src_install() {
if use doc; then
distutils_src_install --with-docs
else
distutils_src_install
fi
}
|