summaryrefslogtreecommitdiff
blob: df4818f9696ca7b0ab50eeeea562fdec36aaf374 (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
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-scheme/gauche/gauche-0.9-r2.ebuild,v 1.1 2010/11/14 15:53:29 jlec Exp $

EAPI="3"

inherit autotools eutils flag-o-matic

IUSE="ipv6"

MY_P="${P/g/G}"

DESCRIPTION="A Unix system friendly Scheme Interpreter"
HOMEPAGE="http://practical-scheme.net/gauche"
SRC_URI="mirror://sourceforge/gauche/${MY_P}.tgz"

LICENSE="BSD"
KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
SLOT="0"
S="${WORKDIR}/${MY_P}"

DEPEND="sys-libs/gdbm"
RDEPEND="${DEPEND}"

src_prepare() {
	epatch "${FILESDIR}"/${PN}-gauche.m4.diff
	epatch "${FILESDIR}"/${PN}-runpath.diff
	eautoconf
}

src_configure() {
#    strip-flags
	econf \
		$(use_enable ipv6) \
		--enable-multibyte=utf8 \
		--with-slib="${EPREFIX}"/usr/share/slib
}

src_compile() {
	emake -j1 XLDFLAGS="${LDFLAGS}" || die "emake failed"
}

src_test() {
	emake -j1 -s check || die "emake check failed"
}

src_install() {
	emake DESTDIR="${D}" install-pkg install-doc || die "emake install failed"
	dodoc AUTHORS ChangeLog HACKING README || die "dodoc failed"
}