summaryrefslogtreecommitdiff
blob: ad5208d0bdf43b9430634ee72c431d6752f49ca0 (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
38
39
40
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5

inherit git-2
inherit autotools

DESCRIPTION="A simple daemon to connect libcec to uinput. That is, using your TV to control your PC! by Andrew Brampton"
HOMEPAGE="https://github.com/KingBonecrusher/libcec-daemon"
EGIT_REPO_URI="https://github.com/benklop/libcec-daemon.git"
SRC_URI=""

LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""

DEPEND="dev-libs/boost dev-libs/log4cplus dev-libs/libcec"
RDEPEND="${DEPEND}"

src_prepare() {
   eautoreconf
}

src_configure() {
       econf
}

src_compile() {
       emake
}


src_install()
{
	insinto /usr/bin
	dobin libcec-daemon || die "Install failed!"
}