blob: 83d9837c1b35c19bfa24e15ed8847f1384953f3a (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-1.1.21-r1.ebuild,v 1.3 2013/01/19 11:52:03 mgorny Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7} )
inherit autotools-utils python-r1
DESCRIPTION="PostgreSQL database adapter for Python"
HOMEPAGE="http://www.initd.org/software/psycopg"
SRC_URI="http://initd.org/pub/software/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="examples"
RDEPEND=">=dev-python/egenix-mx-base-2.0.3[${PYTHON_USEDEP}]
dev-db/postgresql-base
${PYTHON_DEPS}"
DEPEND="${RDEPEND}"
src_prepare() {
# fix for bug #134873
sed -e '1245s/static //' -i cursor.c || die
sed -e 's:$(PY_MOD_DIR):$(D)&/$$mod:' \
-e '/^CFLAGS/s:-I:-I. &:' \
-i Makefile.pre.in || die
autotools-utils_src_prepare
}
src_configure() {
python_configure() {
local myeconfargs=(
--with-mxdatetime-includes="$(python_get_includedir)/mx"
--with-postgres-includes="/usr/include/postgresql/server"
)
autotools-utils_src_configure
sed -e 's:$(BLDSHARED):& $(LDFLAGS):' \
-i "${BUILD_DIR}"/Makefile || die
}
python_foreach_impl python_configure
}
src_compile() {
python_foreach_impl autotools-utils_src_compile \
OPT="${CFLAGS}" LDFLAGS="${LDFLAGS}"
}
src_test() {
:
}
src_install () {
python_install() {
dodir "$(python_get_sitedir)"
autotools-utils_src_install
}
python_foreach_impl python_install
dodoc RELEASE-1.0 SUCCESS doc/python-taylor.txt
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins -r doc/examples/.
docompress -x "${INSDESTTREE}"
fi
}
|