blob: ecfb66ed4646316019cf3673420804bc01f3163b (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/mosml/mosml-2.01-r1.ebuild,v 1.1 2008/06/06 01:26:53 darkside Exp $
inherit eutils
S="${WORKDIR}/${PN}/src"
DESCRIPTION="Moscow ML - a lightweight implementation of Standard ML (SML)"
SRC_URI="http://www.itu.dk/people/sestoft/mosml/mos201src.tar.gz"
HOMEPAGE="http://www.itu.dk/people/sestoft/mosml.html"
LICENSE="GPL-2"
DEPEND=""
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
SLOT="0"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-malloc.patch" #154859
}
src_compile() {
emake MOSMLHOME=/opt/mosml world || die
}
src_install () {
make MOSMLHOME="${D}"/opt/mosml install || die
rm "${D}"/opt/mosml/lib/camlrunm # This is a bad symlink
echo "#!/opt/mosml/bin/camlrunm" > "${D}"/opt/mosml/lib/header
dodoc ../README
into /usr/bin
dosym /opt/mosml/bin/mosml /usr/bin/mosml
dosym /opt/mosml/bin/mosmlc /usr/bin/mosmlc
dosym /opt/mosml/bin/mosmllex /usr/bin/mosmllex
dosym /opt/mosml/bin/mosmlyac /usr/bin/mosmlyac
dosym /opt/mosml/bin/camlrunm /usr/bin/camlrunm
dosym /opt/mosml/bin/camlrunm /opt/mosml/lib/camlrunm
}
|