blob: 4cbdfa1ecb075085da2d9a1e8c95c6c966118f81 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/guile/guile-1.6.4.ebuild,v 1.7 2004/02/11 09:14:42 kumba Exp $
inherit flag-o-matic
DESCRIPTION="Scheme interpreter"
SRC_URI="mirror://gnu/guile/${P}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/guile/"
IUSE=""
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc ~alpha hppa"
DEPEND=">=sys-libs/ncurses-5.1
>=sys-libs/readline-4.1"
# NOTE: in README-PACKAGERS, guile recommends different versions be installed
# in parallel. They're talking about LIBRARY MAJOR versions and not
# the actual guile version that was used in the past.
#
# So I'm slotting this as 12 beacuse of the library major version
SLOT="12"
src_compile() {
# Fix for bug 26484: This package fails to build when built with
# -g3, at least on some architectures. (19 Aug 2003 agriffis)
filter-flags -g3
econf \
--with-threads \
--with-modules || die
emake || die
}
src_install() {
einstall || die
dodoc AUTHORS ChangeLog GUILE-VERSION HACKING NEWS README SNAPSHOTS THANKS
}
|