forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
guvcview-1.7.2.ebuild
47 lines (39 loc) · 930 Bytes
/
guvcview-1.7.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
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit autotools
MY_P=${PN}-src-${PV}
DESCRIPTION="GTK+ UVC Viewer"
HOMEPAGE="http://guvcview.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="pulseaudio"
RDEPEND=">=dev-libs/glib-2.10
media-libs/libpng:0=
>=media-libs/libsdl-1.2.10
media-libs/libv4l
>=media-libs/portaudio-19_pre
virtual/ffmpeg
virtual/libusb:1
virtual/udev
x11-libs/gtk+:3
pulseaudio? ( >=media-sound/pulseaudio-0.9.15 )
!<sys-kernel/linux-headers-3.4-r2" #448260
DEPEND="${RDEPEND}
dev-util/intltool
sys-devel/gettext
virtual/os-headers
virtual/pkgconfig"
S=${WORKDIR}/${MY_P}
src_prepare() {
sed -i '/^docdir/,/^$/d' Makefile.am || die
eautoreconf
}
src_configure() {
econf \
--disable-debian-menu \
$(use_enable pulseaudio pulse)
}