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 D177715801B for ; Thu, 27 Jul 2023 13:00:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE3D4E0978; Thu, 27 Jul 2023 13:00:43 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C242BE0978 for ; Thu, 27 Jul 2023 13:00:43 +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 706103412D4 for ; Thu, 27 Jul 2023 13:00:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C381DDC7 for ; Thu, 27 Jul 2023 13:00:40 +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: <1690462800.7dbf45f208afd99b435049a366f4a9a5308d1f18.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-webrtc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/gst-plugins-webrtc/gst-plugins-webrtc-1.22.3-r1.ebuild media-plugins/gst-plugins-webrtc/gst-plugins-webrtc-1.22.3.ebuild X-VCS-Directories: media-plugins/gst-plugins-webrtc/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7dbf45f208afd99b435049a366f4a9a5308d1f18 X-VCS-Branch: master Date: Thu, 27 Jul 2023 13:00:40 +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: e0f0a957-d58e-47f1-9be9-fae4b482f412 X-Archives-Hash: 55c292669e8245c20c212cb5c371d675 commit: 7dbf45f208afd99b435049a366f4a9a5308d1f18 Author: Sam James gentoo org> AuthorDate: Thu Jul 27 12:59:35 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jul 27 13:00:00 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dbf45f2 media-plugins/gst-plugins-webrtc: fix plugin installation via manual install Thanks to leio for the suggestion. Closes: https://bugs.gentoo.org/907470 Signed-off-by: Sam James gentoo.org> ...-webrtc-1.22.3.ebuild => gst-plugins-webrtc-1.22.3-r1.ebuild} | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/media-plugins/gst-plugins-webrtc/gst-plugins-webrtc-1.22.3.ebuild b/media-plugins/gst-plugins-webrtc/gst-plugins-webrtc-1.22.3-r1.ebuild similarity index 82% rename from media-plugins/gst-plugins-webrtc/gst-plugins-webrtc-1.22.3.ebuild rename to media-plugins/gst-plugins-webrtc/gst-plugins-webrtc-1.22.3-r1.ebuild index ef4d0fec0f89..a8319b878b53 100644 --- a/media-plugins/gst-plugins-webrtc/gst-plugins-webrtc-1.22.3.ebuild +++ b/media-plugins/gst-plugins-webrtc/gst-plugins-webrtc-1.22.3-r1.ebuild @@ -40,3 +40,12 @@ src_prepare() { gstreamer_system_package gstsctp_dep:gstreamer-sctp gstreamer_system_package gstbadaudio_dep:gstreamer-bad-audio } + +multilib_src_install() { + # TODO: Fix this properly, see bug #907470 and bug #909079. + insinto /usr/$(get_libdir) + doins "${BUILD_DIR}"/ext/webrtc/libgstwebrtc.so + insinto /usr/include/gstreamer-1.0/gst/webrtc/nice + doins "${S}"/gst-libs/gst/webrtc/nice/*.h + gstreamer_multilib_src_install +}