blob: ef0469b4ee69c88ac64042f04201bd21d336a6b8 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/guile-pg/guile-pg-0.15.ebuild,v 1.4 2004/07/02 04:58:50 eradicator 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
}
|