blob: 2799f9591dbfe6892699aaeb6e1719cd8e2050a2 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit git-2
DESCRIPTION=" A minimal FIFO based client for Tox"
HOMEPAGE="http://git.2f30.org/ratox"
EGIT_REPO_URI="git://git.2f30.org/ratox
http://git.2f30.org/ratox"
LICENSE="ISC"
SLOT="0"
IUSE=""
RDEPEND="net-libs/tox[av]
media-libs/libv4l
media-libs/libvpx
media-libs/openal"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
epatch_user
}
src_compile() {
emake
}
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}" install
}
|