blob: d3e9c454a65a3327eb845c1fbd06eb023f99ee8f (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/gforth/gforth-0.6.2-r1.ebuild,v 1.6 2008/09/06 06:50:36 ulm Exp $
inherit elisp-common eutils toolchain-funcs flag-o-matic
DESCRIPTION="GNU Forth is a fast and portable implementation of the ANSI Forth language"
HOMEPAGE="http://www.gnu.org/software/gforth"
SRC_URI="http://www.complang.tuwien.ac.at/forth/gforth/${P}.tar.gz
http://www.complang.tuwien.ac.at/forth/gforth/Patches/${PV}-debug.diff"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86 ~x86-fbsd"
IUSE="emacs force-reg"
DEPEND="virtual/libc
dev-libs/ffcall
emacs? ( virtual/emacs )"
SITEFILE=50gforth-gentoo.el
pkg_setup() {
if use force-reg; then
while read line; do ewarn "${line}"; done <<'EOF'
You have chosen to enable "force-reg" in USE. From the GForth manual
(http://www.public.iastate.edu/~forth/gforth_141.html):
"This feature not only depends on the machine, but also on the
compiler version: On some machines some compiler versions produce
incorrect code when certain explicit register declarations are
used. So by default -DFORCE_REG is not used."
EOF
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PV}-ppc-configure-gentoo.patch # Bug #131931
epatch "${FILESDIR}"/gforth.el-gentoo.patch
epatch "${FILESDIR}"/${PV}-c-to-forth-to-c.patch
epatch "${DISTDIR}"/${PV}-debug.diff
}
src_compile() {
filter-flags -Os -O0 -O1 -DFORCE_REG # Bug #120159
append-flags -O2 # Bug #120159
econf CC="$(tc-getCC) -fno-reorder-blocks -fno-inline" \
`use_enable force-reg force-reg` \
|| die "econf failed"
make || die
if use emacs; then
elisp-compile *.el || die
fi
}
src_install() {
make \
libdir="${D}"/usr/lib \
infodir="${D}"/usr/share/info \
mandir="${D}"/usr/share/man \
datadir="${D}"/usr/share \
bindir="${D}"/usr/bin \
install || die
dodoc AUTHORS BUGS ChangeLog NEWS* README* ToDo doc/glossaries.doc doc/*.ps
if use emacs; then
elisp-install ${PN} *.el *.elc || die
elisp-site-file-install "${FILESDIR}"/${SITEFILE} || die
fi
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
|