blob: 36e8144cfc1314401d53ee637a3a874de6f4786f (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-scheme/escm/escm-1.1.ebuild,v 1.1 2005/06/04 10:37:39 hattya Exp $
IUSE=""
DESCRIPTION="escm - Embedded Scheme Processor"
HOMEPAGE="http://www.shiro.dreamhost.com/scheme/vault/escm.html"
SRC_URI="http://www.shiro.dreamhost.com/scheme/vault/${P}.tar.gz"
LICENSE="BSD"
KEYWORDS="~x86"
SLOT="0"
S="${WORKDIR}/${PN}"
DEPEND="|| (
dev-lang/gauche
dev-util/guile
)"
src_unpack() {
unpack ${A}
cd ${S}
sed -i -e "6s/scm, snow/scm gosh, gosh/" configure.in
autoconf
}
src_install() {
dobin escm
doman escm.1
dodoc COPYING ChangeLog escm.html
}
|