summaryrefslogtreecommitdiff
blob: 17fe3b648c5fb4230bbc2b1acfda9b973e870f22 (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
36
37
38
39
40
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/postgresql-ocaml/postgresql-ocaml-1.4.6.ebuild,v 1.3 2010/06/17 18:26:55 patrick Exp $

inherit findlib

IUSE=""

DESCRIPTION="A package for ocaml that provides access to PostgreSQL databases."
SRC_URI="http://ocaml.info/ocaml_sources/${P}.tar.bz2"
HOMEPAGE="http://ocaml.info/home/ocaml_sources.html#toc9"

DEPEND=">=dev-lang/ocaml-3.07
	dev-db/postgresql-server"
RDEPEND=">=dev-lang/ocaml-3.06"

SLOT="0"
LICENSE="LGPL-2"
KEYWORDS="x86 ~ppc"

src_compile()
{
	emake CFLAGS=-I/usr/include/postgresql/pgsql
}

src_install()
{
	findlib_src_preinst
	make DESTDIR=${D} install || die

	if use doc; then
		for dir in examples/*
		do
		  docinto $dir
		  dodoc $dir/*
		done
	fi

	dodoc INSTALL AUTHORS VERSION
}