summaryrefslogtreecommitdiff
blob: 80229e7311d7541607220a697a98d8a62bcee9fa (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5
inherit autotools eutils flag-o-matic qmake-utils toolchain-funcs

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="gsl libav pulseaudio qt5"

RDEPEND=">=dev-libs/glib-2.10
	media-libs/libpng:0=
	media-libs/libsdl2
	media-libs/libv4l
	>=media-libs/portaudio-19_pre
	!libav? ( >=media-video/ffmpeg-2.8:0= )
	libav? ( media-video/libav:= )
	virtual/ffmpeg
	virtual/libusb:1
	virtual/udev
	pulseaudio? ( >=media-sound/pulseaudio-0.9.15 )
	gsl? ( >=sci-libs/gsl-1.15 )
	qt5? ( dev-qt/qtwidgets:5 )
	!qt5? ( >=x11-libs/gtk+-3.6:3 )
	!<sys-kernel/linux-headers-3.4-r2" #448260
DEPEND="${RDEPEND}
	dev-util/intltool
	sys-devel/gettext
	virtual/os-headers
	sys-devel/autoconf-archive
	virtual/pkgconfig"

S=${WORKDIR}/${MY_P}

src_prepare() {
	sed -i '/^docdir/,/^$/d' Makefile.am || die
	has_version '>=media-video/ffmpeg-4' && epatch "${FILESDIR}/ffmpeg4.patch"
	eautoreconf
}

src_configure() {
	export MOC="$(qt5_get_bindir)/moc"
	use qt5 && append-cxxflags -std=c++11
	# 599030
	tc-export CC CXX
	econf \
		--disable-debian-menu \
		$(use_enable gsl) \
		$(use_enable pulseaudio pulse) \
		$(use_enable qt5) \
		$(use_enable !qt5 gtk3)
}