blob: 220575f441b1bc6ffe8fe8ba6ab89c2a260da1f7 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/fort/fort-0.4.2.ebuild,v 1.5 2012/10/10 12:16:04 aballier Exp $
EAPI=2
inherit multilib eutils
DESCRIPTION="provides an environment for testing programs and Objective Caml modules"
HOMEPAGE="http://fort.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
DEPEND="dev-lang/ocaml"
RDEPEND="${DEPEND}"
src_prepare() {
has_version '>=dev-lang/ocaml-4' && epatch "${FILESDIR}/${P}-ocaml4.patch"
sed -i -e "s:\$(BINDIR):\$(DESTDIR)&:"\
-e "s:\$(LIBDIR):\$(DESTDIR)&:" Makefile || die
}
src_configure() {
./configure --bindir /usr/bin --libdir /usr/$(get_libdir)/ocaml || die
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc README || die
}
|