blob: c29fcd8cb96621aebaf7a995f51b41bdb10b84bc (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/hugs98/hugs98-2002.11.ebuild,v 1.3 2002/12/17 20:23:34 george Exp $
IUSE=""
MY_P="hugs98-Nov2002"
S=${WORKDIR}/${MY_P}
DESCRIPTION="The HUGS98 Haskell interpreter"
SRC_URI="http://cvs.haskell.org/Hugs/downloads/Nov2002/${MY_P}.tar.gz"
HOMEPAGE="http://www.haskell.org/hugs"
SLOT="0"
KEYWORDS="x86 ~sparc"
LICENSE="as-is"
DEPEND="virtual/glibc"
src_compile() {
local myc
cd ${S}/src/unix || die
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
--enable-ffi \
--enable-double-precision \
${myc} || die "./configure failed"
cd ..
emake || die
}
src_install () {
cd ${S}/src || die
cp HsFFI.h ../include || die
make \
HUGSDIR=.. \
prefix=${D}/usr \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
install || die
#somewhat clean-up installation of few docs
cd ${S}
dodoc Credits License Readme
cd ${D}/usr/lib/hugs
rm Credits License Readme
mv demos/ docs/ ${D}/usr/share/doc/${PF}
}
|