summaryrefslogtreecommitdiff
blob: 7c2e5d6fbd8102ca607e31f0bfaf2de358729a56 (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/pgasync/pgasync-1.15b.ebuild,v 1.1 2005/03/01 17:39:16 nakano Exp $

inherit distutils

DESCRIPTION="An asynchronous api to postgres for twisted."
HOMEPAGE="http://www.jamwt.com/pgasync/"
SRC_URI="http://www.jamwt.com/pgasync/files/${P}.tar.gz"
LICENSE="pgasync"
SLOT="0"

KEYWORDS="~x86"
IUSE="doc"

DEPEND=">=dev-python/twisted-1.3
	>=dev-lang/python-2.3"

DOCS="CHANGELOG LICENSE PKG-INFO README TODO"

src_install() {
	distutils_src_install
	if use doc; then
		insinto /usr/share/doc/${PF}
		doins -r examples
	fi
}