blob: 7e30a00818eb810b3036055c2fac3394e5837ef8 (
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
76
77
78
79
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.4.2.ebuild,v 1.5 2012/02/01 21:42:24 ranger Exp $
EAPI="3"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="*-jython"
inherit distutils eutils
MY_PN="${PN}2"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="PostgreSQL database adapter for Python"
HOMEPAGE="http://initd.org/psycopg/ http://pypi.python.org/pypi/psycopg2"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="alpha amd64 ~arm ~hppa ia64 ppc ~ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
IUSE="debug doc examples mxdatetime"
RDEPEND=">=dev-db/postgresql-base-8.1
mxdatetime? ( dev-python/egenix-mx-base )"
DEPEND="${RDEPEND}
doc? ( dev-python/sphinx )"
RESTRICT="test"
S="${WORKDIR}/${MY_P}"
PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
DOCS="AUTHORS doc/HACKING doc/SUCCESS"
PYTHON_MODNAME="${PN}2"
src_prepare() {
epatch "${FILESDIR}/${P}-setup.py.patch"
epatch "${FILESDIR}/${P}-begin-segfault.patch"
epatch "${FILESDIR}/${PN}-2.0.9-round-solaris.patch"
python_convert_shebangs 2 doc/src/tools/stitch_text.py
if use debug; then
sed -i 's/^\(define=\)/\1PSYCOPG_DEBUG,/' setup.cfg || die "sed failed"
fi
if use mxdatetime; then
sed -i 's/\(use_pydatetime=\)1/\10/' setup.cfg || die "sed failed"
fi
}
src_compile() {
distutils_src_compile
if use doc; then
einfo "Generation of documentation"
pushd doc > /dev/null
emake -j1 html text || die "Generation of documentation failed"
popd > /dev/null
fi
}
src_install() {
distutils_src_install
if use doc; then
dodoc doc/psycopg2.txt || die "dodoc failed"
pushd doc/html > /dev/null
insinto /usr/share/doc/${PF}/html
doins -r [a-z]* _static || die "Installation of documentation failed"
popd > /dev/null
fi
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins -r examples/* || die "Installation of examples failed"
fi
}
|