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 23ED515808B for ; Sat, 2 Apr 2022 13:20:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD0BDE0821; Sat, 2 Apr 2022 13:20:54 +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 06B02E0821 for ; Sat, 2 Apr 2022 13:20:54 +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 F2CDB341070 for ; Sat, 2 Apr 2022 13:20:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2CF152E0 for ; Sat, 2 Apr 2022 13:20:51 +0000 (UTC) From: "Matthew Smith" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" Message-ID: <1648905609.91d470f82468430f2eeceac809213ecd6be640ea.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/renderdoc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/renderdoc/renderdoc-1.18-r2.ebuild X-VCS-Directories: media-gfx/renderdoc/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: 91d470f82468430f2eeceac809213ecd6be640ea X-VCS-Branch: master Date: Sat, 2 Apr 2022 13:20:51 +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: 4b4efc7f-28b9-462c-8af6-b1e77bb6751c X-Archives-Hash: ec538492c8bb49fa5461cf27ff1f4880 commit: 91d470f82468430f2eeceac809213ecd6be640ea Author: Matthew Smith gentoo org> AuthorDate: Sat Apr 2 13:20:09 2022 +0000 Commit: Matthew Smith gentoo org> CommitDate: Sat Apr 2 13:20:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91d470f8 media-gfx/renderdoc: fix build after qtchooser removal Closes: https://bugs.gentoo.org/836474 Signed-off-by: Matthew Smith gentoo.org> media-gfx/renderdoc/renderdoc-1.18-r2.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/media-gfx/renderdoc/renderdoc-1.18-r2.ebuild b/media-gfx/renderdoc/renderdoc-1.18-r2.ebuild index dde163f217a9..0673790fa460 100644 --- a/media-gfx/renderdoc/renderdoc-1.18-r2.ebuild +++ b/media-gfx/renderdoc/renderdoc-1.18-r2.ebuild @@ -13,7 +13,7 @@ AUTOTOOLS_AUTO_DEPEND="no" DOCS_BUILDER="sphinx" DOCS_DIR="docs" PYTHON_COMPAT=( python3_{9,10} ) -inherit autotools cmake optfeature python-single-r1 docs xdg +inherit autotools cmake optfeature python-single-r1 docs qmake-utils xdg DESCRIPTION="A stand-alone graphics debugging tool" HOMEPAGE="https://renderdoc.org https://github.com/baldurk/renderdoc" @@ -167,6 +167,10 @@ src_configure() { use qt5 && mycmakeargs+=( -DPython3_EXECUTABLE="${PYTHON}" -DRENDERDOC_SWIG_PACKAGE="${DISTDIR}"/${MY_SWIG}.tar.gz + + # Needed after qtchooser removal, bug #836474. + -DQMAKE_QT5_COMMAND="$(qt5_get_bindir)"/qmake + -DQRENDERDOC_ENABLE_PYSIDE2=$(usex pyside2) )