forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
v4l-utils-1.6.2.ebuild
54 lines (46 loc) · 1.33 KB
/
v4l-utils-1.6.2.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils udev
DESCRIPTION="Separate utilities ebuild from upstream v4l-utils package"
HOMEPAGE="http://git.linuxtv.org/v4l-utils.git"
SRC_URI="http://linuxtv.org/downloads/v4l-utils/${P}.tar.bz2"
LICENSE="GPL-2+ LGPL-2.1+"
SLOT="0"
KEYWORDS="alpha amd64 ~arm ~hppa ppc ~ppc64 sparc x86"
IUSE="qt4 udev"
RDEPEND=">=media-libs/libv4l-${PV}
qt4? (
dev-qt/qtgui:4
dev-qt/qtopengl:4
virtual/opengl
media-libs/alsa-lib
)
udev? ( virtual/libudev )
!media-tv/v4l2-ctl
!<media-tv/ivtv-utils-1.4.0-r2"
DEPEND="${RDEPEND}
sys-devel/gettext
virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.6.2-sysmacros.patch #580910
}
src_configure() {
# Hard disable the flags that apply only to the libs.
econf \
--disable-static \
$(use_enable qt4 qv4l2) \
$(use_with udev libudev) \
--with-udevdir="$(get_udevdir)" \
--without-jpeg
}
src_install() {
emake -C utils DESTDIR="${D}" install
emake -C contrib DESTDIR="${D}" install
dodoc README
newdoc utils/libv4l2util/TODO TODO.libv4l2util
newdoc utils/libmedia_dev/README README.libmedia_dev
newdoc utils/dvb/README README.dvb
newdoc utils/xc3028-firmware/README README.xc3028-firmware
newdoc utils/v4l2-compliance/fixme.txt fixme.txt.v4l2-compliance
}