From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 627C615820A for ; Wed, 09 Jul 2025 17:46:27 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 48C38341F9F for ; Wed, 09 Jul 2025 17:46:27 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 332B51102F2; Wed, 09 Jul 2025 17:46:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 2986B1102F2 for ; Wed, 09 Jul 2025 17:46:26 +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 CF68A342145 for ; Wed, 09 Jul 2025 17:46:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E46E82F38 for ; Wed, 09 Jul 2025 17:46:23 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1752083166.c075f6528f799b89aad47a288e3f49ef32f796ed.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/kamoso/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/kamoso/kamoso-9999.ebuild X-VCS-Directories: kde-apps/kamoso/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c075f6528f799b89aad47a288e3f49ef32f796ed X-VCS-Branch: master Date: Wed, 09 Jul 2025 17:46:23 +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: 3c596aca-aea9-4f07-bb1f-4e49fe9e17ab X-Archives-Hash: 41b30ca40db2b6d442733061112aa0ff commit: c075f6528f799b89aad47a288e3f49ef32f796ed Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Jun 27 21:36:54 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Jul 9 17:46:06 2025 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=c075f652 kde-apps/kamoso: Add new dependency, set PATCHED_GSTREAMER=ON Upstream commit 7588f6f816a1cbf20c87c4bf8df2a7cf122beba2 Bug: https://bugs.gentoo.org/958983 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/kamoso/kamoso-9999.ebuild | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/kde-apps/kamoso/kamoso-9999.ebuild b/kde-apps/kamoso/kamoso-9999.ebuild index bcc9a5c3fb..2dd5f04803 100644 --- a/kde-apps/kamoso/kamoso-9999.ebuild +++ b/kde-apps/kamoso/kamoso-9999.ebuild @@ -35,5 +35,14 @@ RDEPEND="${DEPEND} media-plugins/gst-plugins-jpeg:1.0 media-plugins/gst-plugins-libpng:1.0 media-plugins/gst-plugins-meta:1.0[alsa,theora,vorbis,v4l] + media-plugins/gst-plugins-qt6:1.0 " BDEPEND="virtual/pkgconfig" + +src_configure() { + local mycmakeargs=( + -DPATCHED_GSTREAMER=ON + ) + + ecm_src_configure +}