blob: 84fb43f09b60ca25b17b7de5e7b5be7b2995b7ad (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# 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.2 2002/12/18 01:51:13 blauwers 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/glibc dev-db/postgresql virtual/python"
S=${WORKDIR}/${PN}
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
}
|