diff options
author | Alexis Ballier <aballier@gentoo.org> | 2019-02-27 17:30:06 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2019-02-27 17:30:30 +0100 |
commit | f991530ac74c41404da667d70b093798ea26c0f1 (patch) | |
tree | 61199b43476e2f2ed74353e2b72b05f30f752074 /media-tv | |
parent | media-tv/v4l-utils: update icon cache (diff) | |
download | gentoo-f991530ac74c41404da667d70b093798ea26c0f1.tar.gz gentoo-f991530ac74c41404da667d70b093798ea26c0f1.tar.bz2 gentoo-f991530ac74c41404da667d70b093798ea26c0f1.zip |
media-tv/v4l-utils: Add bpf useflag.
Closes: https://bugs.gentoo.org/678894
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
Diffstat (limited to 'media-tv')
-rw-r--r-- | media-tv/v4l-utils/metadata.xml | 3 | ||||
-rw-r--r-- | media-tv/v4l-utils/v4l-utils-1.16.3-r1.ebuild | 68 |
2 files changed, 71 insertions, 0 deletions
diff --git a/media-tv/v4l-utils/metadata.xml b/media-tv/v4l-utils/metadata.xml index 681f0dcf3b5d..c7efa529292e 100644 --- a/media-tv/v4l-utils/metadata.xml +++ b/media-tv/v4l-utils/metadata.xml @@ -5,4 +5,7 @@ <email>tetromino@gentoo.org</email> <name>Alexandre Rostovtsev</name> </maintainer> +<use> + <flag name="bpf">Enables support for IR BPF decoders.</flag> +</use> </pkgmetadata> diff --git a/media-tv/v4l-utils/v4l-utils-1.16.3-r1.ebuild b/media-tv/v4l-utils/v4l-utils-1.16.3-r1.ebuild new file mode 100644 index 000000000000..648290a07289 --- /dev/null +++ b/media-tv/v4l-utils/v4l-utils-1.16.3-r1.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit flag-o-matic udev xdg-utils + +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="~amd64 ~arm ~hppa ~ppc64 ~sparc ~x86" +IUSE="+bpf opengl qt5" + +RDEPEND=">=media-libs/libv4l-${PV}[jpeg] + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + opengl? ( dev-qt/qtopengl:5[-gles2(-)] virtual/opengl ) + media-libs/alsa-lib + ) + virtual/libudev + >=virtual/jpeg-0-r2:0= + bpf? ( virtual/libelf:= sys-devel/clang:*[llvm_targets_BPF] ) + !media-tv/v4l2-ctl + !<media-tv/ivtv-utils-1.4.0-r2" +DEPEND="${RDEPEND}" +BDEPEND=" + sys-devel/gettext + virtual/pkgconfig" + +src_configure() { + if use qt5; then + append-cxxflags -std=c++11 + local qt5_paths=( \ + MOC="$(pkg-config --variable=host_bins Qt5Core)/moc" \ + UIC="$(pkg-config --variable=host_bins Qt5Core)/uic" \ + RCC="$(pkg-config --variable=host_bins Qt5Core)/rcc" \ + ) + if use !opengl; then + sed -e 's/Qt5OpenGL/DiSaBlEd/g' -i configure || die + fi + fi + # Hard disable the flags that apply only to the libs. + econf \ + --disable-static \ + $(use_enable qt5 qv4l2) \ + $(use_enable qt5 qvidcap) \ + $(use_enable bpf) \ + --with-udevdir="$(get_udevdir)" \ + --with-jpeg \ + "${qt5_paths[@]}" +} + +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/v4l2-compliance/fixme.txt fixme.txt.v4l2-compliance +} + +pkg_postinst() { xdg_icon_cache_update; } +pkg_postrm() { xdg_icon_cache_update; } |