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 2B0001581C1 for ; Mon, 8 Jul 2024 03:19:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D10482BC03E; Mon, 8 Jul 2024 03:19:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id AED752BC015 for ; Mon, 8 Jul 2024 03:19:08 +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 9203B342F9C for ; Mon, 8 Jul 2024 03:19:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CE1E81DF5 for ; Mon, 8 Jul 2024 03:19:05 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1720408719.d2e77ee9cec6ee8f70e1572e2a243f555c1241a3.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/webcamoid/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/webcamoid/webcamoid-9999.ebuild X-VCS-Directories: media-video/webcamoid/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: d2e77ee9cec6ee8f70e1572e2a243f555c1241a3 X-VCS-Branch: master Date: Mon, 8 Jul 2024 03:19:05 +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: 07eff998-facf-489c-8e7b-38057aa0543f X-Archives-Hash: f0566687d8eee764182aca01372b2c91 commit: d2e77ee9cec6ee8f70e1572e2a243f555c1241a3 Author: Eli Schwartz gentoo org> AuthorDate: Mon Jul 8 00:03:52 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Mon Jul 8 03:18:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2e77ee9 media-video/webcamoid: update live to build with upstream changes Primarily, it has moved to Qt6 now. Signed-off-by: Eli Schwartz gentoo.org> media-video/webcamoid/webcamoid-9999.ebuild | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/media-video/webcamoid/webcamoid-9999.ebuild b/media-video/webcamoid/webcamoid-9999.ebuild index c539d8831d38..c77abd8ab919 100644 --- a/media-video/webcamoid/webcamoid-9999.ebuild +++ b/media-video/webcamoid/webcamoid-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -24,23 +24,16 @@ IUSE="alsa ffmpeg gstreamer jack libuvc oss portaudio pulseaudio qtaudio qtcamer 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 + dev-qt/qtbase:6[concurrent,dbus,gui,network,opengl,widgets] + dev-qt/qtdeclarative:6 + dev-qt/qtsvg:6 ffmpeg? ( media-video/ffmpeg:= ) gstreamer? ( >=media-libs/gstreamer-1.6.0 ) jack? ( virtual/jack ) libuvc? ( media-libs/libuvc ) pulseaudio? ( media-libs/libpulse ) - qtaudio? ( dev-qt/qtmultimedia:5 ) - qtcamera? ( dev-qt/qtmultimedia:5 ) + qtaudio? ( dev-qt/qtmultimedia:6 ) + qtcamera? ( dev-qt/qtmultimedia:6 ) sdl? ( media-libs/libsdl2 ) v4l? ( media-libs/libv4l ) " @@ -64,6 +57,7 @@ src_configure() { "-DNOPIPEWIRE=1" "-DNOPORTAUDIO=1" # PortAudio not packaged for gentoo "-DNOALSA=$(usex alsa 0 1)" + "-DNOQTAUDIO=$(usex qtaudio 0 1)" "-DNOQTCAMERA=$(usex qtcamera 0 1)" "-DNOFFMPEG=$(usex ffmpeg 0 1)" "-DNOGSTREAMER=$(usex gstreamer 0 1)"