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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2E94615812D for ; Sun, 05 Jan 2025 23:45:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 61CCDE07A7; Sun, 05 Jan 2025 23:45:24 +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 46C29E07A7 for ; Sun, 05 Jan 2025 23:45:24 +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 55291335D21 for ; Sun, 05 Jan 2025 23:45:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B47FBD81 for ; Sun, 05 Jan 2025 23:45:21 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1736120672.f439400855abe4975a1423a285b9b5ad1a5c0ea9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/gstreamer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/gstreamer/gstreamer-1.24.10.ebuild X-VCS-Directories: media-libs/gstreamer/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f439400855abe4975a1423a285b9b5ad1a5c0ea9 X-VCS-Branch: master Date: Sun, 05 Jan 2025 23:45:21 +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: 47a9af12-0886-4ef5-896a-87e1562db55e X-Archives-Hash: 619fe31b8de6bb3da6e8e4cae0975577 commit: f439400855abe4975a1423a285b9b5ad1a5c0ea9 Author: Sam James gentoo org> AuthorDate: Sun Jan 5 23:43:14 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jan 5 23:44:32 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4394008 media-libs/gstreamer: actually control ptp w/ USE=ptp Closes: https://bugs.gentoo.org/947524 Closes: https://bugs.gentoo.org/947532 Signed-off-by: Sam James gentoo.org> media-libs/gstreamer/gstreamer-1.24.10.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/media-libs/gstreamer/gstreamer-1.24.10.ebuild b/media-libs/gstreamer/gstreamer-1.24.10.ebuild index c9df01e1105c..fd802735e446 100644 --- a/media-libs/gstreamer/gstreamer-1.24.10.ebuild +++ b/media-libs/gstreamer/gstreamer-1.24.10.ebuild @@ -43,13 +43,18 @@ PATCHES=( # Rust QA_FLAGS_IGNORED="usr/libexec/gstreamer-1.0/gst-ptp-helper" +pkg_setup() { + gstreamer-meson_pkg_setup + use ptp && rust_pkg_setup +} + multilib_src_configure() { local emesonargs=( -Dtools=$(multilib_is_native_abi && echo enabled || echo disabled) -Dbenchmarks=disabled -Dexamples=disabled -Dcheck=enabled - -Dptp-helper=$(multilib_is_native_abi && echo enabled || echo disabled) + -Dptp-helper=$(multilib_is_native_abi && echo $(usex 'ptp' 'enabled' 'disabled') || echo disabled) $(meson_feature unwind libunwind) $(meson_feature unwind libdw) )