diff options
author | Alastair Tse <liquidx@gentoo.org> | 2006-02-21 21:18:21 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2006-02-21 21:18:21 +0000 |
commit | 577260f18dfe3927e9a9bf94f0de3387da74f156 (patch) | |
tree | 7564b3dadec2d214e5fa689960187f0675980207 /dev-python/4suite/4suite-1.0_beta3.ebuild | |
parent | Minor fix. (diff) | |
download | historical-577260f18dfe3927e9a9bf94f0de3387da74f156.tar.gz historical-577260f18dfe3927e9a9bf94f0de3387da74f156.tar.bz2 historical-577260f18dfe3927e9a9bf94f0de3387da74f156.zip |
version bump. plus stable bump for 1.0b1 because 1.0a3 does not compile any more on stable (#123394)
Package-Manager: portage-2.1_pre4-r1
Diffstat (limited to 'dev-python/4suite/4suite-1.0_beta3.ebuild')
-rw-r--r-- | dev-python/4suite/4suite-1.0_beta3.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-python/4suite/4suite-1.0_beta3.ebuild b/dev-python/4suite/4suite-1.0_beta3.ebuild new file mode 100644 index 000000000000..5dc7471a4760 --- /dev/null +++ b/dev-python/4suite/4suite-1.0_beta3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/4suite/4suite-1.0_beta3.ebuild,v 1.1 2006/02/21 21:18:21 liquidx Exp $ + +inherit distutils eutils + +MY_PV=${PV/_beta/b} +S=${WORKDIR}/4Suite-${MY_PV} +DESCRIPTION="Python tools for XML processing and object-databases." +SRC_URI="ftp://ftp.4suite.org/pub/4Suite/4Suite-XML-${MY_PV}.tar.gz" +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}/1.0_b3-add_root_opt.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 +} |