summaryrefslogtreecommitdiff
blob: 6a84c11b39eee6e342ff1cd12396801f375cc320 (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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/luvcview/luvcview-20070512.ebuild,v 1.1 2008/01/12 13:02:19 agorf Exp $

inherit toolchain-funcs

DESCRIPTION="USB Video Class grabber"
HOMEPAGE="http://linux-uvc.berlios.de"
SRC_URI="http://mxhaard.free.fr/spca50x/Investigation/uvc/${P}.tar.gz"

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

DEPEND="media-libs/libsdl"
RDEPEND="${DEPEND}"

src_unpack() {
	unpack ${A}
	sed -e 's/-O2//' -i "${S}"/Makefile
}

src_compile() {
	emake CC="$(tc-getCC)" CPP="$(tc-getCXX)" || die "emake failed"
}

src_install() {
	dobin luvcview
	dodoc README Changelog ToDo
}