From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 36FDA158021 for ; Fri, 11 Nov 2022 08:34:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C5CDE091D; Fri, 11 Nov 2022 08:34:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 33E84E08AD for ; Fri, 11 Nov 2022 08:34:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1D6C3335DAF for ; Fri, 11 Nov 2022 08:34:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7098172F for ; Fri, 11 Nov 2022 08:34:00 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1668155638.a44b43d1ce4625e8d76c5f69c3dd0f3f7056131c.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/webcamoid/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/webcamoid/webcamoid-9.0.0.ebuild X-VCS-Directories: media-video/webcamoid/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: a44b43d1ce4625e8d76c5f69c3dd0f3f7056131c X-VCS-Branch: master Date: Fri, 11 Nov 2022 08:34:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a3c317b0-e7b5-4d55-886a-39b39084eaaf X-Archives-Hash: 8d7b049ac1f95ef5c3fcc8ba7aa118b6 commit: a44b43d1ce4625e8d76c5f69c3dd0f3f7056131c Author: Joonas Niilola gentoo org> AuthorDate: Fri Nov 11 08:14:08 2022 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri Nov 11 08:33:58 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a44b43d1 media-video/webcamoid: ebuild enhancements for 9.0.0 Signed-off-by: Joonas Niilola gentoo.org> media-video/webcamoid/webcamoid-9.0.0.ebuild | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/media-video/webcamoid/webcamoid-9.0.0.ebuild b/media-video/webcamoid/webcamoid-9.0.0.ebuild index 2498e61d9dfe..2f9d1d781288 100644 --- a/media-video/webcamoid/webcamoid-9.0.0.ebuild +++ b/media-video/webcamoid/webcamoid-9.0.0.ebuild @@ -12,14 +12,12 @@ RESTRICT="mirror" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~arm64 ~x86" -CMAKE_USE_DIR="${WORKDIR}/${PF}" -BUILD_DIR="${CMAKE_USE_DIR}/${PN}-build" IUSE="alsa coreaudio ffmpeg gstreamer jack libuvc oss pulseaudio qtaudio v4lutils videoeffects debug headers v4l" REQUIRED_USE="v4lutils? ( v4l )" -RDEPEND=" +COMMON_DEPEND=" dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdeclarative:5 @@ -37,17 +35,18 @@ RDEPEND=" qtaudio? ( dev-qt/qtmultimedia:5 ) v4l? ( media-libs/libv4l ) " -DEPEND="${RDEPEND} +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 's|find_program(GIT_BIN git)|#find_program(GIT_BIN git)|' libAvKys/cmake/ProjectCommons.cmake -i + sed -i 's|find_program(GIT_BIN git)|#find_program(GIT_BIN git)|' libAvKys/cmake/ProjectCommons.cmake || die local mycmakeargs=( - "-S ${WORKDIR}/${PF}" - "-B ${WORKDIR}/${PF}/webcamoid-build" "-DNOMEDIAFOUNDATION=1" "-DNOAVFOUNDATION=1" "-DNODSHOW=1"