blob: 23e44b2263f6d1e7af4c04b3a59be3bc99b68f84 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pypgsql/pypgsql-2.3.ebuild,v 1.9 2004/07/02 04:29:41 squinky86 Exp $
DESCRIPTION="Python Interface to PostgreSQL"
HOMEPAGE="http://pypgsql.sourceforge.net/"
SRC_URI="mirror://sourceforge/pypgsql/pyPgSQL-${PV}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND="virtual/libc dev-db/postgresql virtual/python"
S=${WORKDIR}/${PN}
IUSE=""
SLOT="0"
src_compile() {
cd ${S}
python setup.py build || die
}
src_install () {
python setup.py install --prefix=${D}/usr || die
dodir /usr/share/doc/${PF}/
cp -R examples ${D}/usr/share/doc/${PF}
dodoc README
}
|