commit:     6176a2508d14bcafb52302cf2e6e8751dae6be90
Author:     Joakim Tjernlund <Joakim.Tjernlund <AT> infinera <DOT> com>
AuthorDate: Fri Nov 11 15:38:49 2022 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Nov 11 18:12:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6176a250

media-video/webcamoid: add live 9999 ebuild

Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund <AT> infinera.com>
Closes: https://github.com/gentoo/gentoo/pull/28225
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 media-video/webcamoid/webcamoid-9999.ebuild | 88 +++++++++++++++++++++++++++++
 1 file changed, 88 insertions(+)

diff --git a/media-video/webcamoid/webcamoid-9999.ebuild 
b/media-video/webcamoid/webcamoid-9999.ebuild
new file mode 100644
index 000000000000..0190611634e3
--- /dev/null
+++ b/media-video/webcamoid/webcamoid-9999.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake xdg-utils
+
+DESCRIPTION="A full featured webcam capture application"
+HOMEPAGE="https://webcamoid.github.io";
+if [[ ${PV} = 9999 ]]; then
+       EGIT_REPO_URI="https://github.com/webcamoid/webcamoid.git";
+       EGIT_BRANCH="master"
+       inherit git-r3
+else
+       
SRC_URI="https://github.com/webcamoid/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
+       KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+RESTRICT="mirror"
+LICENSE="GPL-3"
+SLOT="0"
+
+IUSE="alsa coreaudio ffmpeg gstreamer jack libuvc oss pulseaudio qtaudio 
v4lutils videoeffects debug headers v4l"
+
+REQUIRED_USE="v4lutils? ( v4l )"
+
+COMMON_DEPEND="
+       dev-qt/qtconcurrent:5
+       dev-qt/qtcore:5
+       dev-qt/qtdbus:5
+       dev-qt/qtdeclarative:5
+       dev-qt/qtgui:5
+       dev-qt/qtnetwork:5
+       dev-qt/qtopengl:5
+       dev-qt/qtquickcontrols2:5
+       dev-qt/qtsvg:5
+       dev-qt/qtwidgets:5
+       ffmpeg? ( media-video/ffmpeg:= )
+       gstreamer? ( >=media-libs/gstreamer-1.6.0 )
+       jack? ( virtual/jack )
+       libuvc? ( media-libs/libuvc )
+       pulseaudio? ( media-sound/pulseaudio )
+       qtaudio? ( dev-qt/qtmultimedia:5 )
+       v4l? ( media-libs/libv4l )
+"
+DEPEND="${COMMON_DEPEND}
+       >=sys-kernel/linux-headers-3.6
+"
+RDEPEND="${COMMON_DEPEND}
+       virtual/opengl
+"
+
+src_configure() {
+       #Disable git in package source. If not disabled the cmake configure 
process will show a lot of "fatal not a git repository" errors
+       sed -i 's|find_program(GIT_BIN git)|#find_program(GIT_BIN git)|' 
libAvKys/cmake/ProjectCommons.cmake || die
+
+       local mycmakeargs=(
+               "-DNOMEDIAFOUNDATION=1"
+               "-DNOAVFOUNDATION=1"
+               "-DNODSHOW=1"
+               "-DNOWASAPI=1"
+               "-DNOVLC=1"
+               "-DNOPIPEWIRE=1"
+               "-DNOALSA=$(usex alsa 0 1)"
+               "-DNOCOREAUDIO=$(usex coreaudio 0 1)"
+               "-DNOFFMPEG=$(usex ffmpeg 0 1)"
+               "-DNOGSTREAMER=$(usex gstreamer 0 1)"
+               "-DNOJACK=$(usex jack 0 1)"
+               "-DNOLIBUVC=$(usex libuvc 0 1)"
+               "-DNOPULSEAUDIO=$(usex pulseaudio 0 1)"
+               "-DNOV4L2=$(usex v4l 0 1)"
+               "-DNOV4LUTILS=$(usex v4lutils 0 1)"
+               "-DNOVIDEOEFFECTS=$(usex videoeffects 0 1)"
+       )
+       cmake_src_configure
+}
+
+src_install() {
+       docompress -x /usr/share/man/${PN}.1.gz
+       cmake_src_install
+}
+
+pkg_postinst() {
+       xdg_icon_cache_update
+}
+
+pkg_postrm() {
+       xdg_icon_cache_update
+}

Reply via email to