summaryrefslogtreecommitdiff
blob: 462aee032cba28a1520ee96b54c1b69c9f25c794 (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
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="2"

inherit base findlib

DESCRIPTION="OCaml bindings for the GSL library"
HOMEPAGE="http://oandrieu.nerim.net/ocaml/gsl/"
SRC_URI="http://oandrieu.nerim.net/ocaml/gsl/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc"

DEPEND=">=dev-lang/ocaml-3.10
	>=sci-libs/gsl-1.9"
RDEPEND="${DEPEND}"

PATCHES=( "${FILESDIR}/ocaml-3.11.patch" )

src_compile() {
	emake -j1 || die "compilation failed"
}

src_install() {
	findlib_src_preinst
	emake install-findlib -j1 || die "make install failed"

	dodoc README NEWS NOTES || die "docs install failed"
	doinfo *.info* || die "info install failed"
	if use doc; then
		dohtml doc/* || die "html docs install failed"
	fi
}