summaryrefslogtreecommitdiff
blob: 48d207447210d6020fe6ef26cf318d72116e37aa (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
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-scheme/hop/hop-1.8.5.ebuild,v 1.1 2008/01/03 13:47:32 hkbst Exp $

EAPI="2"

DESCRIPTION="A Fast R6RS Scheme interpreter."
HOMEPAGE="http://code.google.com/p/mosh-scheme/"
SRC_URI="http://mosh-scheme.googlecode.com/files/${P}.tar.gz"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"

IUSE=""

src_prepare() {
	echo ".section .note.GNU-stack,\"\",%progbits" >> src/ffi_stub_i386.S || die
}

src_compile() {
	emake || die
}

src_install () {
	emake DESTDIR="${D}" install || die
}