blob: 95349a131070bab89a7619d9ec07882ed9e36e81 (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/hugs98/hugs98-2003.11.ebuild,v 1.7 2004/11/03 20:52:49 kosmikus Exp $
inherit base eutils
IUSE="opengl"
MY_P="hugs98-Nov2003"
S=${WORKDIR}/${MY_P}
DESCRIPTION="The HUGS98 Haskell interpreter"
SRC_URI="http://cvs.haskell.org/Hugs/downloads/Nov2003/${MY_P}.tar.gz"
HOMEPAGE="http://www.haskell.org/hugs/"
SLOT="0"
KEYWORDS="x86 ~sparc"
LICENSE="as-is"
DEPEND="virtual/libc
opengl? ( virtual/opengl virtual/glu virtual/glut )
~app-text/docbook-sgml-dtd-4.2"
src_unpack() {
base_src_unpack
cd ${S}/src
epatch ${FILESDIR}/${P}-gcc34.patch
}
src_compile() {
local myconf
if use opengl; then
myconf="--enable-hopengl"
# the nvidia drivers *seem* not to work together
# with pthreads
[ ! -f /etc/env.d/09opengl ] \
|| [ -z "`grep opengl/nvidia/lib /etc/env.d/09opengl`" ] \
&& myconf="$myconf --with-pthreads" \
|| myconf="--with-pthreads"
fi
# When timing is enabled, the build will fail at some
# point with:
#
# | gcc runhugs.o server.o [...]-o runhugs
# | evaluator.o(.text+0x1b7): In function `evaluator':
# | : undefined reference to `updateTimers'
# | collect2: ld returned 1 exit status
#
# Somebody *cough* should look into this.
myconf="$myconf --disable-timer"
# When using econf here, configure will spout warnings
# about how you need to give "--host --target --build",
# and sometimes it will refuse to run at all.
cd ${S}/src/unix || die
./configure \
--host=${CHOST} \
--target=${CHOST} \
--build=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
--enable-ffi \
--with-pthreads \
--enable-profiling \
${myconf} || die "./configure failed"
cd ..
emake || die
}
src_install () {
cd ${S}/src || die
make \
HUGSDIR=${D}/usr/lib/hugs \
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}
}
|