blob: 9fca8b50295b12bc4c19207bed27a50ab235df27 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="Erlang-style concurrency for Gambit Scheme"
HOMEPAGE="https://code.google.com/p/termite/"
SRC_URI="https://termite.googlecode.com/files/${PN}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-scheme/gambit"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}"
src_install() {
dobin tsi
dodoc README CHANGELOG
insinto /usr/$(get_libdir)/${PN}/
doins *.scm
doins -r otp
insinto /usr/share/${PN}
doins -r examples test benchmarks
}
|