blob: b2c16c0441818cf100ab7c7bae86b5e588bdc4ae (
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
89
90
91
92
93
94
95
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/mercury-extras/mercury-extras-0.12.2.ebuild,v 1.1 2006/03/27 11:06:43 keri Exp $
inherit eutils
DESCRIPTION="Additional libraries and tools that are not part of the Mercury standard library"
HOMEPAGE="http://www.cs.mu.oz.au/research/mercury/index.html"
SRC_URI="ftp://ftp.mercury.cs.mu.oz.au/pub/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc glut iodbc opengl tcltk"
DEPEND="~dev-lang/mercury-0.12.2
sys-libs/ncurses
glut? ( virtual/glut )
iodbc? ( dev-db/libiodbc )
opengl? ( virtual/opengl )
tcktk? ( =dev-lang/tk-8.4*
x11-libs/libX11
x11-libs/libXmu )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-concurrency.patch
epatch "${FILESDIR}"/${P}-mercury_glut.patch
epatch "${FILESDIR}"/${P}-mercury_tcltk.patch
epatch "${FILESDIR}"/${P}-mercury_opengl.patch
epatch "${FILESDIR}"/${P}-odbc.patch
epatch "${FILESDIR}"/${P}-trailed_update.patch
sed -i -e "s:curs:concurrency curs:" \
-e "s:posix:posix quickcheck:" \
-e "s:xml:trailed_update xml:" Mmakefile
use iodbc && sed -i -e "s:moose:moose odbc:" Mmakefile
use glut && sed -i -e "s: lex : graphics/mercury_glut lex :" Mmakefile
use tcltk && sed -i -e "s: lex : graphics/mercury_tcltk lex :" Mmakefile
use opengl && sed -i -e "s: lex : graphics/mercury_opengl lex :" Mmakefile
}
src_compile() {
mmake depend || die "mmake depend failed"
mmake || die "mmake failed"
if use opengl && use tcltk ; then
cd "${S}"/graphics/mercury_opengl
cp ../mercury_tcltk/mtcltk.m ./
mmake -f Mmakefile.mtogl depend || die "mmake depend mtogl failed"
mmake -f Mmakefile.mtogl || die "mmake mtogl failed"
fi
}
src_install() {
cd "${S}"
mmake INSTALL_PREFIX="${D}"/usr install || die "mmake install failed"
if use opengl && use tcltk ; then
cd "${S}"/graphics/mercury_opengl
mv Mmakefile Mmakefile.opengl
mv Mmakefile.mtogl Mmakefile
mmake INSTALL_PREFIX="${D}"/usr \
install || die "mmake install mtogl failed"
fi
cd "${S}"
if use doc ; then
docinto samples/complex_numbers
dodoc complex_numbers/samples/*.m
docinto samples/curs
dodoc curs/samples/*.m
docinto samples/curses
dodoc curses/sample/*.m
docinto samples/dynamic_linking
dodoc dynamic_linking/hello.m
docinto samples/lex
dodoc lex/samples/*.m
docinto samples/moose
dodoc moose/samples/*.m moose/samples/*.moo
docinto samples/references
dodoc references/samples/*.m
fi
dodoc README
}
|