blob: ce4a0b837385198d0d8fa867bc0ff97b00fc05c0 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit git-2
DESCRIPTION="Cross-platform graphical user interface for Tox written in Racket"
HOMEPAGE="https://github.com/lehitoskin/blight"
EGIT_REPO_URI="git://github.com/lehitoskin/blight
https://github.com/lehitoskin/blight"
LICENSE="GPL-3"
SLOT="0"
RDEPEND="net-libs/tox
>=dev-db/sqlite-3.8.2
>=dev-scheme/racket-6.0.1[X]"
src_prepare() {
raco pkg install --no-setup github://github.com/lehitoskin/libtoxcore-racket/master
epatch "$FILESDIR/${P}.patch"
epatch_user
}
src_compile() {
emake
}
src_install() {
emake DESTDIR="${D}/usr" install
}
|