You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
622 B
35 lines
622 B
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="5"
|
|
|
|
inherit autotools toolchain-funcs
|
|
|
|
DESCRIPTION="escm - Embedded Scheme Processor"
|
|
HOMEPAGE="http://practical-scheme.net/vault/escm.html"
|
|
SRC_URI="http://practical-scheme.net/vault/${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="|| (
|
|
dev-scheme/gauche
|
|
dev-scheme/guile
|
|
)"
|
|
S="${WORKDIR}/${PN}"
|
|
|
|
src_prepare() {
|
|
sed -i -e "6s/scm, snow/scm gosh, gosh/" configure.in
|
|
eautoconf
|
|
tc-export CC
|
|
}
|
|
|
|
src_install() {
|
|
dobin escm
|
|
doman escm.1
|
|
dodoc ChangeLog escm.html
|
|
}
|