blob: d36d12591a3f7ae19549783f4d55c21c0465dc48 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-scheme/guile-pg/guile-pg-0.15.ebuild,v 1.1 2006/05/11 21:59:00 mkennedy Exp $
IUSE=""
DESCRIPTION="Guile bindings for PostgreSQL"
SRC_URI="http://www.glug.org/alt/${P}.tar.gz"
HOMEPAGE="http://www.glug.org/"
LICENSE="GPL-2"
KEYWORDS="x86"
SLOT="0"
DEPEND="virtual/libc
dev-db/postgresql
dev-util/guile"
src_compile() {
econf || die
emake || die
}
src_install () {
einstall || die
rm -f ${D}/usr/info/dir
dodoc COPYING HACKING INSTALL NEWS README TODO AUTHORS ChangeLog
}
|