aboutsummaryrefslogtreecommitdiff
blob: 7f1c9aa3fed043b60b547fb7abd97b275278323d (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
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=4
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS=1
RESTRICT_PYTHON_ABIS="3.*"
PYTHON_USE_WITH="sqlite"
inherit distutils

DESCRIPTION="An sqlite-backed dictionary"
HOMEPAGE="http://pypi.python.org/pypi/sqlite3dbm/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

KEYWORDS="~amd64"
IUSE="doc"
LICENSE="Apache-2.0"
SLOT="0"

REDEPEND=""
DEPEND="${REDEPEND} dev-python/setuptools
	doc? ( dev-python/sphinx )"

src_prepare() {
	cp -R "${FILESDIR}"/conf.py docs || die
}

src_compile() {
	use doc && emake -C docs text
}

src_install() {
	distutils_src_install
	if use doc; then
		docompress -x usr/share/doc/${P}/
		dodoc -r docs/_build/{doctrees,text}
	fi
}

pkg_postinst() {
	python_mod_optimize sqlite3dbm
}

pkg_postrm() {
	python_mod_cleanup sqlite3dbm
}