blob: 64c55b78a552ac727af6dd89f5149d0a7d5664bd (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/bsddb3-5.1.2.ebuild,v 1.8 2012/07/29 17:15:19 armin76 Exp $
EAPI="3"
PYTHON_DEPEND="2 3:3.1"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.0 *-jython 2.7-pypy-*"
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 x86"
IUSE="doc"
RDEPEND=">=sys-libs/db-4.6"
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"
elif has_version sys-libs/db:4.8; then
DB_VER="4.8"
elif has_version sys-libs/db:4.7; then
DB_VER="4.7"
else
DB_VER="4.6"
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
}
|