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 31BC9158090 for ; Tue, 10 May 2022 23:23:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D757E092F; Tue, 10 May 2022 23:23:34 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 pigeon.gentoo.org (Postfix) with ESMTPS id 325C9E092F for ; Tue, 10 May 2022 23:23:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 0B8793418D9 for ; Tue, 10 May 2022 23:23:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 692C02F9 for ; Tue, 10 May 2022 23:23:30 +0000 (UTC) From: "Ronny Gutbrod" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ronny Gutbrod" Message-ID: <1652224981.ae3b369ffed925fdb52f80b8d5fa412122d1c94a.tastytea@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-plugins/gst-plugins-qt5/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-plugins/gst-plugins-qt5/gst-plugins-qt5-1.18.4.ebuild X-VCS-Directories: media-plugins/gst-plugins-qt5/ X-VCS-Committer: tastytea X-VCS-Committer-Name: Ronny Gutbrod X-VCS-Revision: ae3b369ffed925fdb52f80b8d5fa412122d1c94a X-VCS-Branch: dev Date: Tue, 10 May 2022 23:23:30 +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: 11eed5b0-6a8c-4180-a105-64d670932cfc X-Archives-Hash: 72f8d6cda4d068751d7b3a951863cb90 Message-ID: <20220510232330.ClAm-mnqxlct-MJgyRwfKZG3LETqsKhi0rUL7hXESho@z> commit: ae3b369ffed925fdb52f80b8d5fa412122d1c94a Author: Ronny (tastytea) Gutbrod tastytea de> AuthorDate: Tue May 10 23:13:10 2022 +0000 Commit: Ronny Gutbrod tastytea de> CommitDate: Tue May 10 23:23:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ae3b369f media-plugins/gst-plugins-qt5: Search moc in qt5_get_bindir Signed-off-by: Ronny (tastytea) Gutbrod tastytea.de> media-plugins/gst-plugins-qt5/gst-plugins-qt5-1.18.4.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/media-plugins/gst-plugins-qt5/gst-plugins-qt5-1.18.4.ebuild b/media-plugins/gst-plugins-qt5/gst-plugins-qt5-1.18.4.ebuild index 8be3c0310..b446d44ab 100644 --- a/media-plugins/gst-plugins-qt5/gst-plugins-qt5-1.18.4.ebuild +++ b/media-plugins/gst-plugins-qt5/gst-plugins-qt5-1.18.4.ebuild @@ -5,7 +5,7 @@ EAPI=7 GST_ORG_MODULE=gst-plugins-good -inherit gstreamer-meson +inherit gstreamer-meson qmake-utils DESCRIPTION="Qt5 QML video sink plugin for GStreamer" KEYWORDS="~amd64" @@ -32,3 +32,8 @@ PATCHES=( ) GST_PLUGINS_BUILD_DIR="qt" + +src_prepare() { + export PATH="${PATH}:$(qt5_get_bindir)" + default +}