From ea6ec22f536553dcd417bc8b577418d3ebe5ce4c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 26 Aug 2022 02:51:21 +0100 Subject: gentoo auto-resync : 26:08:2022 - 02:51:21 --- media-tv/Manifest.gz | Bin 3938 -> 3931 bytes media-tv/v4l-utils/Manifest | 2 +- media-tv/v4l-utils/v4l-utils-1.22.1-r1.ebuild | 119 ++++++++++++++++++++++++++ media-tv/v4l-utils/v4l-utils-1.22.1.ebuild | 116 ------------------------- 4 files changed, 120 insertions(+), 117 deletions(-) create mode 100644 media-tv/v4l-utils/v4l-utils-1.22.1-r1.ebuild delete mode 100644 media-tv/v4l-utils/v4l-utils-1.22.1.ebuild (limited to 'media-tv') diff --git a/media-tv/Manifest.gz b/media-tv/Manifest.gz index 5eebbe226dbd..ade60d5200db 100644 Binary files a/media-tv/Manifest.gz and b/media-tv/Manifest.gz differ diff --git a/media-tv/v4l-utils/Manifest b/media-tv/v4l-utils/Manifest index 37c6138596c7..e2b34d86ccc6 100644 --- a/media-tv/v4l-utils/Manifest +++ b/media-tv/v4l-utils/Manifest @@ -1,3 +1,3 @@ DIST v4l-utils-1.22.1.tar.bz2 2086238 BLAKE2B a3f01a17ea7c8925c74dd883d30b42f54b7926d253dac79e4cadaba43abc33672804257b3b92e5aa640ead6b5aaaa2458f05e21642044d7dea77e5580a8dbe9a SHA512 8a634d8995d13f453dfaf90ca5d0dfb26f2f4b10a0d200d76a949c46f77040d12fc0a5b35e05d7b1ba68bcfc85a445be5a5ab1d4a7d4eabfe3a254038ccc6170 -EBUILD v4l-utils-1.22.1.ebuild 2786 BLAKE2B 9d7ae7685cbfc80cd349650c94ddb140479892754cade1268eab962364f076ceb9e652ebcc214f3ecdf07073f508dd2f67534532b968ff199d19966d5e3eb320 SHA512 c89e1b232d88ae331e5ab434da29697422934c52909e2d9323c6a7b55c412b803ff6759d8cb70e0f5f4ef2029722e79b3f8de7cd7fc536ef7405da1dd3900627 +EBUILD v4l-utils-1.22.1-r1.ebuild 2807 BLAKE2B 18184ac1641150b40964d6f43fd9c0390399205f5416624883942e3f3607c51d01e45bed299cb0424ea99278c105164e222ef9da52e119430d0433c8b7a33c58 SHA512 6393f8baf7f748c9780b15982eb8554f0b7c75957f866efb1976f21f47fce57eafa7a90eb02c98287bc90d23d25a5230c13d6d737f14c82d13311a2d3121e613 MISC metadata.xml 323 BLAKE2B 79c864de29f9e92372f16bc835f1d260bc7de2c2c809c625806cc18611c50d992abc69de9b8754afa683fabd6a9422e4eb619d87490d4cf5ae1142f05af3557f SHA512 89ec71cc2961d7a6787e4d0e95c959823d1068602ea6cbeac7065ffe926e6c218ad7984c32271131e2624f49f314507cccf1a639e68e3669481d979dcc50bdc7 diff --git a/media-tv/v4l-utils/v4l-utils-1.22.1-r1.ebuild b/media-tv/v4l-utils/v4l-utils-1.22.1-r1.ebuild new file mode 100644 index 000000000000..57f4e1a21e15 --- /dev/null +++ b/media-tv/v4l-utils/v4l-utils-1.22.1-r1.ebuild @@ -0,0 +1,119 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools toolchain-funcs udev xdg + +DESCRIPTION="Separate utilities ebuild from upstream v4l-utils package" +HOMEPAGE="https://git.linuxtv.org/v4l-utils.git" +SRC_URI="https://linuxtv.org/downloads/v4l-utils/${P}.tar.bz2" + +LICENSE="GPL-2+ LGPL-2.1+" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 sparc x86" +IUSE="+bpf dvb opengl qt5 +udev" + +RDEPEND=" + >=media-libs/libv4l-${PV}[dvb?] + bpf? ( + /dev/null || + die "${clang} does not support the BPF target. Please check LLVM_TARGETS." + fi +} + +pkg_pretend() { + has_version -b sys-devel/clang && check_llvm +} + +pkg_setup() { + check_llvm +} + +src_prepare() { + default + eautoreconf +} + +src_configure() { + if use qt5; then + local qt5_paths=( \ + MOC="$($(tc-getPKG_CONFIG) --variable=host_bins Qt5Core)/moc" \ + UIC="$($(tc-getPKG_CONFIG) --variable=host_bins Qt5Core)/uic" \ + RCC="$($(tc-getPKG_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 dvb libdvbv5) \ + $(use_enable qt5 qv4l2) \ + $(use_enable qt5 qvidcap) \ + $(use_enable bpf) \ + --without-jpeg \ + $(use_with udev libudev) \ + --with-udevdir="$(get_udevdir)" \ + "${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_pkg_postinst + use udev && udev_reload + + if [[ -n ${REPLACING_VERSIONS} ]] && ver_test 1.20.0 -ge ${REPLACING_VERSIONS%% *}; then + ewarn "WARNING! ir-keytable has changed significantly from version 1.20.0 so" + ewarn "you may need to take action to avoid breakage. See" + ewarn "https://bugs.gentoo.org/767175 for more details." + fi +} + +pkg_postrm() { + xdg_pkg_postrm + use udev && udev_reload +} diff --git a/media-tv/v4l-utils/v4l-utils-1.22.1.ebuild b/media-tv/v4l-utils/v4l-utils-1.22.1.ebuild deleted file mode 100644 index 6566baa52d21..000000000000 --- a/media-tv/v4l-utils/v4l-utils-1.22.1.ebuild +++ /dev/null @@ -1,116 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools toolchain-funcs udev xdg - -DESCRIPTION="Separate utilities ebuild from upstream v4l-utils package" -HOMEPAGE="https://git.linuxtv.org/v4l-utils.git" -SRC_URI="https://linuxtv.org/downloads/v4l-utils/${P}.tar.bz2" - -LICENSE="GPL-2+ LGPL-2.1+" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 sparc x86" -IUSE="+bpf dvb opengl qt5 +udev" - -RDEPEND=" - >=media-libs/libv4l-${PV}[dvb?,jpeg] - >=virtual/jpeg-0-r2:0= - bpf? ( virtual/libelf:= ) - udev? ( virtual/libudev ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - opengl? ( dev-qt/qtopengl:5[-gles2(-)] virtual/opengl ) - media-libs/alsa-lib - ) - !media-tv/v4l2-ctl - !/dev/null || - die "${clang} does not support the BPF target. Please check LLVM_TARGETS." - fi -} - -pkg_pretend() { - has_version -b sys-devel/clang && check_llvm -} - -pkg_setup() { - check_llvm -} - -src_prepare() { - default - eautoreconf -} - -src_configure() { - if use qt5; then - local qt5_paths=( \ - MOC="$($(tc-getPKG_CONFIG) --variable=host_bins Qt5Core)/moc" \ - UIC="$($(tc-getPKG_CONFIG) --variable=host_bins Qt5Core)/uic" \ - RCC="$($(tc-getPKG_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 dvb libdvbv5) \ - $(use_enable qt5 qv4l2) \ - $(use_enable qt5 qvidcap) \ - $(use_enable bpf) \ - --with-jpeg \ - $(use_with udev libudev) \ - --with-udevdir="$(get_udevdir)" \ - "${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_pkg_postinst - use udev && udev_reload - - if [[ -n ${REPLACING_VERSIONS} ]] && ver_test 1.20.0 -ge ${REPLACING_VERSIONS%% *}; then - ewarn "WARNING! ir-keytable has changed significantly from version 1.20.0 so" - ewarn "you may need to take action to avoid breakage. See" - ewarn "https://bugs.gentoo.org/767175 for more details." - fi -} - -pkg_postrm() { - xdg_pkg_postrm - use udev && udev_reload -} -- cgit v1.2.3