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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2D3EA1382C5 for ; Fri, 15 Jan 2021 17:43:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4FF1AE0870; Fri, 15 Jan 2021 17:43:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3AE3AE0870 for ; Fri, 15 Jan 2021 17:43:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DF3AC340C8D for ; Fri, 15 Jan 2021 17:42:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F8B0496 for ; Fri, 15 Jan 2021 17:42:57 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1610732573.7523cf2066eba5503fb2aecd366b790388c65a9b.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/dhcpcd-ui/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/dhcpcd-ui/dhcpcd-ui-0.7.8.ebuild X-VCS-Directories: net-misc/dhcpcd-ui/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 7523cf2066eba5503fb2aecd366b790388c65a9b X-VCS-Branch: master Date: Fri, 15 Jan 2021 17:42:57 +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: 1a4d6b93-ebb9-41a8-b504-52a7029c2598 X-Archives-Hash: b46603240bc6de39c742766cd46201e4 commit: 7523cf2066eba5503fb2aecd366b790388c65a9b Author: Lars Wendler gentoo org> AuthorDate: Fri Jan 15 17:42:26 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Fri Jan 15 17:42:53 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7523cf20 net-misc/dhcpcd-ui: Fixed build without qtchooser Closes: https://bugs.gentoo.org/765547 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Lars Wendler gentoo.org> net-misc/dhcpcd-ui/dhcpcd-ui-0.7.8.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/net-misc/dhcpcd-ui/dhcpcd-ui-0.7.8.ebuild b/net-misc/dhcpcd-ui/dhcpcd-ui-0.7.8.ebuild index 6878e53ae1a..755b2b779ad 100644 --- a/net-misc/dhcpcd-ui/dhcpcd-ui-0.7.8.ebuild +++ b/net-misc/dhcpcd-ui/dhcpcd-ui-0.7.8.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit systemd xdg +inherit qmake-utils systemd xdg DESCRIPTION="Desktop notification and configuration for dhcpcd" HOMEPAGE="https://roy.marples.name/projects/dhcpcd-ui/" @@ -53,6 +53,7 @@ src_configure() { $(use_with ncurses curses) $(use_with qt5 qt) ) + QMAKE="$(qt5_get_bindir)/qmake" \ econf "${myeconfargs[@]}" }