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

EAPI=2
DESCRIPTION="Allows streaming video from a hacked TiVo running vserver"
HOMEPAGE="http://code.google.com/p/vstream-client/"
SRC_URI="http://vstream-client.googlecode.com/files/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""

src_configure() {
	./configure --prefix=/usr
}

src_compile() {
	emake || die "Failed to build vstream-client!"
}

src_install() {
	dolib libvstream-client.a
	dobin vstream-client
	insinto /usr/include/
	doins vstream-client.h
}