diff options
author | Dirkjan Ochtman <djc@gentoo.org> | 2011-09-10 13:56:55 +0000 |
---|---|---|
committer | Dirkjan Ochtman <djc@gentoo.org> | 2011-09-10 13:56:55 +0000 |
commit | a711f8f4e76781f44426cab3f34fbde7356393c2 (patch) | |
tree | cac6254eb91566416b1c15c641d8ad61facb2fc3 /dev-python/bsddb3/bsddb3-5.2.0.ebuild | |
parent | Version bump, remove old. (diff) | |
download | gentoo-2-a711f8f4e76781f44426cab3f34fbde7356393c2.tar.gz gentoo-2-a711f8f4e76781f44426cab3f34fbde7356393c2.tar.bz2 gentoo-2-a711f8f4e76781f44426cab3f34fbde7356393c2.zip |
Version bump bsddb to 5.2.0.
(Portage version: 2.1.10.15/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/bsddb3/bsddb3-5.2.0.ebuild')
-rw-r--r-- | dev-python/bsddb3/bsddb3-5.2.0.ebuild | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/dev-python/bsddb3/bsddb3-5.2.0.ebuild b/dev-python/bsddb3/bsddb3-5.2.0.ebuild new file mode 100644 index 000000000000..e2fdfa101d2b --- /dev/null +++ b/dev-python/bsddb3/bsddb3-5.2.0.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/bsddb3-5.2.0.ebuild,v 1.1 2011/09/10 13:56:55 djc Exp $ + +EAPI="3" +PYTHON_DEPEND="2 3:3.1" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.0" + +inherit db-use distutils multilib + +DESCRIPTION="Python bindings for Berkeley DB" +HOMEPAGE="http://www.jcea.es/programacion/pybsddb.htm http://pypi.python.org/pypi/bsddb3" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86" +IUSE="doc" + +RDEPEND=">=sys-libs/db-4.8.30" +DEPEND="${RDEPEND} + dev-python/setuptools" + +PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") + +DOCS="ChangeLog TODO.txt" + +src_configure() { + local DB_VER + if has_version sys-libs/db:5.1; then + DB_VER="5.1" + elif has_version sys-libs/db:5.0; then + DB_VER="5.0" + else + DB_VER="4.8" + fi + sed -e "s/dblib = 'db'/dblib = '$(db_libname ${DB_VER})'/" -i setup2.py setup3.py || die "sed failed" +} + +src_compile() { + distutils_src_compile \ + --berkeley-db="${EPREFIX}/usr" \ + --berkeley-db-incdir="${EPREFIX}$(db_includedir ${DB_VER})" \ + --berkeley-db-libdir="${EPREFIX}/usr/$(get_libdir)" +} + +src_test() { + tests() { + rm -f build + ln -s build-${PYTHON_ABI} build + + echo TMPDIR="${T}/tests-${PYTHON_ABI}" "$(PYTHON)" test.py + TMPDIR="${T}/tests-${PYTHON_ABI}" "$(PYTHON)" test.py + } + python_execute_function tests +} + +src_install() { + distutils_src_install + + delete_tests() { + rm -fr "${ED}$(python_get_sitedir)/bsddb3/tests" + } + python_execute_function -q delete_tests + + if use doc; then + dohtml -r docs/html/* || die "dohtml failed" + fi +} |