blob: 827226250257335504a07362fc3326333e80cce8 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/pygresql/pygresql-4.0.ebuild,v 1.3 2011/01/08 16:08:43 arfrever Exp $
EAPI="3"
inherit eutils distutils
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
MY_P="PyGreSQL-${PV}"
DESCRIPTION="A Python interface for the PostgreSQL database."
SRC_URI="ftp://ftp.pygresql.org/pub/distrib/${MY_P}.tgz"
HOMEPAGE="http://www.pygresql.org/"
LICENSE="as-is"
SLOT="0"
IUSE="doc"
DEPEND="dev-db/postgresql-base"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
src_install() {
distutils_src_install
dodoc docs/*.txt
if use doc ; then
insinto /usr/share/doc/${PF}/tutorial
doins tutorial/*
dohtml docs/*.{html,css}
fi
}
|