blob: 635661f70197d06772294c83496310298becf49f (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/gforth/gforth-0.7.0.ebuild,v 1.7 2010/01/02 18:37:41 fauli 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="ftp://ftp.gnu.org/pub/gnu/gforth/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~x86-fbsd ~x86-freebsd ~x86-linux ~ppc-macos"
IUSE="emacs"
DEPEND="dev-libs/ffcall
emacs? ( virtual/emacs )"
RDEPEND="${DEPEND}"
SITEFILE=50${PN}-gentoo.el
src_unpack() {
unpack ${A}
}
src_compile() {
local myconf
# May want to add a USE flag for --enable-force-cdiv, if necessary
# At this point I do not know when that is appropriate, and I don't
# want to add an ebuild-specific USE flag without understanding.
if ! use emacs; then
myconf="--without-lispdir"
fi
econf ${myconf} || die "econf failed"
# Parallel make breaks here
emake -j1 || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS BUGS ChangeLog NEWS* README* ToDo doc/glossaries.doc doc/*.ps
if use emacs; then
elisp-install ${PN} gforth.el gforth.elc || die "elisp-install failed"
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
fi
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
|