summaryrefslogtreecommitdiff
blob: bc20140c5250c9a0ffebb58b3e7962e03e56902f (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
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/gauche/gauche-0.7.1.ebuild,v 1.4 2003/09/08 07:18:49 msterret Exp $

inherit flag-o-matic

# 2003-09-06: karltk
# Original submission used the non-exisiting utf8 flag, changed to nls for now
IUSE="ipv6 nls"
HOMEPAGE="http://gauche.sf.net"
DESCRIPTION="A Unix system friendly Scheme Interpreter"
SRC_URI="mirror://sourceforge/gauche/Gauche-${PV}.tgz"
LICENSE="BSD"
KEYWORDS="x86 ~sparc"
SLOT="0"
S="${WORKDIR}/Gauche-${PV}"

DEPEND="virtual/glibc
	>=sys-libs/gdbm-1.8.0-r5"

src_compile() {
	local myconf

	use ipv6 && myconf="--enable-ipv6"

	if [ "`use nls`" ]; then
		myconf="$myconf --enable-multibyte=utf-8"
	else
		myconf="$myconf --enable-multibyte=euc-jp"
	fi

	sed -e "67s/\$(LIB_INSTALL_DIR)/\$(DISTDIR)\$(LIB_INSTALL_DIR)/" \
		src/Makefile.in > src/Makefile.in.tmp
	rm -f src/Makefile.in
	mv src/Makefile.in.tmp src/Makefile.in

	filter-flags -fforce-addr

	CFLAGS="" CXXFLAGS="" econf $myconf --enable-threads=pthreads
	emake OPTFLAGS="$CFLAGS"

	make check
}

src_install () {
#	einstall
	make install DESTDIR=${D}

	dodoc AUTORS COPYING ChangeLog HACKING INSTALL INSTALL.eucjp README
}