blob: 88f788418c644929b22449a2330f5f39af09df75 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-2.1.10.ebuild,v 1.1 2005/03/31 05:27:19 mkennedy Exp $
inherit elisp-common flag-o-matic eutils gcc
DESCRIPTION="GNU Smalltalk"
HOMEPAGE="http://www.gnu.org/software/smalltalk/smalltalk.html"
SRC_URI="http://ftp.gnu.org/gnu/smalltalk/smalltalk-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE="tcltk readline emacs gtk gmp"
DEPEND="dev-libs/gmp
sys-libs/gdbm
sys-apps/debianutils
emacs? ( virtual/emacs )
readline? ( sys-libs/readline )
tcltk? ( dev-lang/tcl dev-lang/tk )
gtk? ( =x11-libs/gtk+-2* )
gmp? ( dev-libs/gmp )"
S=${WORKDIR}/smalltalk-${PV}
SITEFILE=50gnu-smalltalk-gentoo.el
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${PV}-gst-image-temp.patch
if has_version '>=dev-lang/gnu-smalltalk-2.1.8'; then
einfo "You already have a gnu-smalltalk version installed"
einfo "We set correct values for SMALLTALKIMAGE and SMALLTALKKERNEL during compilation"
sed -i "s:getenv\ (\"SMALLTALK_KERNEL\"):\"${D}/usr/share/smalltalk\":" ${S}/libgst/lib.c
sed -i "s:getenv\ (\"SMALLTALK_IMAGE\"):\"${D}/usr/share/smalltalk\":" ${S}/libgst/lib.c
fi
}
src_compile() {
local myconf=""
if use tclk; then
myconf="
`use_with tcltk tcl=/usr/lib` \
`use_with tcltk tk=/usr/lib`"
fi
replace-flags '-O3' '-O2'
econf \
`use_with emacs emacs` \
`use_with readline readline` \
`use_with gmp gmp` \
`use_enable gtk gtk` \
${myconf} \
|| die
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} lispdir=${D}/usr/share/emacs/site-lisp/gnu-smalltalk install || die
rm -rf ${D}/usr/include/sigsegv.h \
${D}/usr/include/snprintfv \
${D}/usr/share/aclocal/snprintfv.m4
dodoc AUTHORS COPYING* ChangeLog NEWS PATCHES README THANKS TODO
use emacs && elisp-site-file-install ${FILESDIR}/${SITEFILE}
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
|