blob: b09fb7e00cb9d949eeb453ab8bff4319420a4362 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.0.2.ebuild,v 1.10 2007/07/16 21:14:51 armin76 Exp $
inherit eutils distutils
DESCRIPTION="PostgreSQL database adapter for Python."
SRC_URI="http://initd.org/pub/software/psycopg/${PN}2-${PV}.tar.gz"
HOMEPAGE="http://initd.org/projects/psycopg2"
DEPEND=">=dev-lang/python-2.4
>=dev-db/libpq-7.4"
SLOT="2"
KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86"
LICENSE="GPL-2"
IUSE="debug"
S=${WORKDIR}/${PN}2-${PV}
DOCS="AUTHORS ChangeLog CREDITS README"
src_unpack() {
unpack ${A}
if ! use debug; then
epatch ${FILESDIR}/${P}-nodebug.patch
fi
}
src_install () {
distutils_src_install
insinto /usr/share/doc/${PF}/examples
doins examples/*
}
|