diff options
-rw-r--r-- | dev-python/bsddb3/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/bsddb3/bsddb3-4.7.4.ebuild | 60 |
2 files changed, 67 insertions, 2 deletions
diff --git a/dev-python/bsddb3/ChangeLog b/dev-python/bsddb3/ChangeLog index 837fc70addb2..5b6585422213 100644 --- a/dev-python/bsddb3/ChangeLog +++ b/dev-python/bsddb3/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/bsddb3 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/ChangeLog,v 1.27 2008/10/25 17:48:22 hawking Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/ChangeLog,v 1.28 2009/02/01 00:13:58 patrick Exp $ + +*bsddb3-4.7.4 (01 Feb 2009) + + 01 Feb 2009; Patrick Lauer <patrick@gentoo.org> +bsddb3-4.7.4.ebuild: + Bump to 4.7.4, closes #256864 25 Oct 2008; Ali Polatel <hawking@gentoo.org> bsddb3-4.7.3.ebuild: Use db-2.7 if available. Update DEPEND. diff --git a/dev-python/bsddb3/bsddb3-4.7.4.ebuild b/dev-python/bsddb3/bsddb3-4.7.4.ebuild new file mode 100644 index 000000000000..a1b599157b9a --- /dev/null +++ b/dev-python/bsddb3/bsddb3-4.7.4.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/bsddb3-4.7.4.ebuild,v 1.1 2009/02/01 00:13:58 patrick Exp $ + +EAPI="1" + +NEED_PYTHON=2.5 + +inherit distutils db-use multilib + +DESCRIPTION="Python bindings for BerkeleyDB" +HOMEPAGE="http://www.jcea.es/programacion/pybsddb.htm" +SRC_URI="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86" +IUSE="doc" + +RDEPEND=">=sys-libs/db-4.6" +DEPEND="${RDEPEND} + dev-python/setuptools + doc? ( dev-python/sphinx )" + +src_compile() { + local DB_VER + if has_version sys-libs/db:4.7; then + DB_VER="4.7" + else + DB_VER="4.6" + fi + + sed -i \ + -e "s/dblib = 'db'/dblib = '$(db_libname ${DB_VER})'/" \ + setup2.py setup3.py || die "sed failed" + + distutils_src_compile \ + "--berkeley-db=/usr" \ + "--berkeley-db-incdir=$(db_includedir ${DB_VER})" \ + "--berkeley-db-libdir=/usr/$(get_libdir)" + + if use doc ; then + mkdir html + sphinx-build docs html || die "building docs failed" + fi +} + +src_install() { + DOCS="TODO.txt" + distutils_src_install + + distutils_python_version + rm -rf "${D}/usr/$(get_libdir)/python${PYVER}/site-packages/${PN}/tests" + + use doc && dohtml -r html/* +} + +src_test() { + distutils_python_version + "${python}" test.py || die "tests failed" +} |