aboutsummaryrefslogtreecommitdiff
blob: a2bf2eec4b765878e1a413b6794758a2b543beea (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="2"

inherit eutils toolchain-funcs

DESCRIPTION="MLGMPIDL is an OCaml interface to the GMP and MPFR libraries"
HOMEPAGE="http://www.inrialpes.fr/pop-art/people/bjeannet/mlxxxidl-forge/mlgmpidl/"
SRC_URI="https://gforge.inria.fr/frs/download.php/20228/${PN}-${PV}.tgz"

LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc +mpfr"

DEPEND=">=dev-lang/ocaml-3.09
		dev-ml/camlidl
		dev-libs/gmp
		mpfr? ( dev-libs/mpfr )
		doc? ( app-text/texlive
				app-text/ghostscript-gpl )"
RDEPEND="${DEPEND}"

S="${WORKDIR}/${PN}"

src_prepare() {
	rm -R html mlgmpidl.pdf
	mv Makefile.config.model Makefile.config
	sed -i Makefile.config \
		-e "s/FLAGS = \\\/FLAGS += \\\/g" \
		-e "s/-O3 -UNDEBUG/-DUDEBUG/g" \
		-e "s/MLGMPIDL_PREFIX = /MLGMPIDL_PREFIX = \${DESTDIR}\/usr/g"

	if use !mpfr; then
		sed -i -e "s/HAS_MPFR=1/#HAS_MPFR=0/g" Makefile.config
	fi

	epatch "${FILESDIR}/${P}-mpfr-3_compat.patch"
}

src_compile() {
	emake all gmprun gmptop -j1 || die "emake failed"

	if use doc; then
		make html mlgmpidl.pdf || die "emake doc failed"
	fi
}

src_install(){
	emake install DESTDIR="${D}" || die "emake install failed"
	dodoc README

	if use doc; then
		dodoc mlgmpidl.pdf
	fi
}