blob: c5df30eab67ab2ad87f8466e7b886132f870c17b (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-scheme/chicken/chicken-1.89.ebuild,v 1.4 2005/06/06 22:33:27 mkennedy Exp $
inherit multilib
DESCRIPTION="Chicken is a Scheme interpreter and native Scheme to C compiler"
SRC_URI="http://www.call-with-current-continuation.org/${P}.tar.gz"
HOMEPAGE="http://www.call-with-current-continuation.org/"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
DEPEND=""
src_compile() {
./configure \
--host=${CHOST} \
--prefix=/usr \
--libdir=/usr/$(get_libdir) \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die "./configure failed"
make || die
make check || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc COPYING ChangeLog AUTHORS NEWS README THANKS TODO
dodir /usr/share/doc/${PF}/html
mv ${D}/usr/share/chicken/doc/manual/ ${D}/usr/share/doc/${PF}/html/
rm -rf ${D}/usr/share/chicken/doc
}
|