forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
luvcview-0.2.6.ebuild
40 lines (32 loc) · 958 Bytes
/
luvcview-0.2.6.ebuild
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=2
inherit eutils toolchain-funcs
PATCH_LEVEL=4
DESCRIPTION="USB Video Class grabber"
HOMEPAGE="http://packages.qa.debian.org/l/luvcview.html"
SRC_URI="mirror://debian/pool/main/l/${PN}/${PN}_${PV}.orig.tar.gz
mirror://debian/pool/main/l/${PN}/${PN}_${PV}-${PATCH_LEVEL}.diff.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="media-libs/libsdl
media-libs/libv4l"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
EPATCH_OPTS="-p1" epatch "${WORKDIR}"/${PN}_${PV}-${PATCH_LEVEL}.diff
EPATCH_FORCE=yes EPATCH_SUFFIX=patch epatch debian/patches
sed -i -e 's:videodev.h:videodev2.h:' *.{c,h} || die
sed -i -e 's:-O2::' Makefile || die
}
src_compile() {
emake CC="$(tc-getCC) ${LDFLAGS}" || die
}
src_install() {
dobin luvcview || die
doman debian/luvcview.1 || die
dodoc Changelog README ToDo || die
}