blob: eee6a685f4a0c4ff99154cdf1c445b201de4716b (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-scheme/stklos/stklos-0.96.ebuild,v 1.2 2007/11/29 07:15:27 opfer Exp $
inherit eutils
DESCRIPTION="fast and light Scheme implementation"
HOMEPAGE="http://www.stklos.org"
SRC_URI="http://www.stklos.org/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="threads ldap gtk gnome"
DEPEND="dev-libs/gmp dev-libs/libpcre dev-libs/boehm-gc
ldap? ( net-nds/openldap )
gtk? ( x11-libs/gtk+ )"
# gnome? ( )" # someone using gnome should figure out what package will enable gnome support
#silex and ``The Dominique Boucher LALR Package'' may also be deps, not in tree though
RDEPEND="${DEPEND}"
pkg_setup() {
if use threads; then
built_with_use dev-libs/boehm-gc threads || die "boehm-gc must be built with threads use flag"
fi
}
src_unpack() {
unpack ${A}; cd "${S}"
cp cinvoke/Makefile.templ cinvoke/Makefile.templ.old
sed "s:\[PREFIX\]:\$\(DESTDIR\)\[PREFIX\]:g" -i cinvoke/Makefile.templ
diff -u cinvoke/Makefile.templ.old cinvoke/Makefile.templ
epatch "${FILESDIR}"/multilib.patch
}
src_compile() {
#anyone interested in lurc threads? not in tree though
econf $(use_enable threads threads pthreads) $(use_enable ldap) $(use_enable gtk) $(use_enable gnome) \
--without-gmp-light --without-provided-gc --without-provided-regexp
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
}
|