blob: da148280907e752086f9352ea116639a9ed37843 (
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-2007 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.2 2007/01/10 19:40:17 peper 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-scheme/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
}
|