blob: b15f06f7c997ab2234359b7f4545b89f1d137c77 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EDARCS_REPOSITORY="http://darcs.debian.org/darcs/${PN}/${PN}/"
inherit eutils darcs multilib
DESCRIPTION="The Scheme->C compiler, R4RS compliant"
HOMEPAGE="http://alioth.debian.org/projects/scheme2c/"
SRC_URI=""
LICENSE="MIT"
SLOT="0"
KEYWORDS="" #only x32 and amd64 are tested and supported
IUSE="X doc"
DEPEND="dev-libs/libsigsegv
doc? ( app-text/ghostscript-gpl )
X? ( x11-libs/libX11 )"
RDEPEND="${DEPEND}"
src_compile() {
if use doc; then
emake -C doc/ embedded.pdf index.pdf intro.pdf smithnotes.pdf || \
die "Failed to build documents"
fi
if use x86; then
emake forLINUX || die "Failed to set up Linux build"
cd LINUX
elif use amd64; then
emake forAMD64 || die "Failed to set up AMD64 build"
cd AMD64
else
die "Unimplemented architecture"
fi
# Due to insanity in the build system we have to touch these to
# guarantee that everything will always get built
touch scrt/*.c
touch scsc/*.c
emake -j1 all || die "Failed to compile"
if use X; then
emake -C cdecl || die "cdecl couldn't build"
emake -C xlib -B sizeof.cdecl || die "cdecl couldn't run"
emake -C xlib all || die "xlib bindings failed to build"
fi
}
src_install() {
if use x86; then
cd LINUX
elif use amd64; then
cd AMD64
else
die "Unimplemented architecture"
fi
insinto /usr/$(get_libdir)/${PN}
# Only a small subset of files from scrt is required
doins scrt/libsc.a scrt/predef.sc scrt/objects.h scrt/options.h || \
die "Failed to install scrt files"
dobin scrt/sci scsc/{scc,sccomp} || die "Failed to install binaries"
if use X; then
doins xlib/scxl.a || die "Failed to install X11 bindings"
dobin xlib/scixl || die "Failed to install X11-aware interpreter"
newdoc xlib/doc.txt xlib.txt || die "Failed to install X documentation"
fi
cd ..
cp doc/scc.l doc/scc.1 || die
cp doc/sci.l doc/sci.1 || die
doman doc/{scc,sci}.1 || die "Failed to install man pages"
if use doc; then
dodoc doc/*.pdf || die "Failed to install pdf documentation"
fi
dodoc CHANGES README || die "Failed to install documentation"
dosed "s:.*sccomp:sccomp:g" /usr/bin/scc || die
dosed "s:-LIBDIR.*t:-LIBDIR /usr/$(get_libdir)/scheme2c/ \
-I/usr/$(get_libdir)/scheme2c/:g" /usr/bin/scc || die
dosed "s:-scmh 40:-scmh 1000 -sch 10:g" /usr/bin/scc || die
}
|