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 E92DF1382C5 for ; Tue, 3 Apr 2018 16:26:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E18E7E0952; Tue, 3 Apr 2018 16:26:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 BFB75E0952 for ; Tue, 3 Apr 2018 16:26:11 +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 725FA335D5F for ; Tue, 3 Apr 2018 16:26:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7BB11264 for ; Tue, 3 Apr 2018 16:26:07 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1522772755.a9544171706ff5b01b3502b7df8c92c09c014f8b.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/gr-fosphor/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/gr-fosphor/gr-fosphor-9999.ebuild X-VCS-Directories: net-analyzer/gr-fosphor/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a9544171706ff5b01b3502b7df8c92c09c014f8b X-VCS-Branch: master Date: Tue, 3 Apr 2018 16:26:07 +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-Archives-Salt: 333784d0-b3f3-4988-ba58-a311c3ad467f X-Archives-Hash: a3db3b28b083f94cb2c1a707f9e68a8b commit: a9544171706ff5b01b3502b7df8c92c09c014f8b Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Apr 3 16:25:55 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Apr 3 16:25:55 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9544171 net-analyzer/gr-fosphor: Drop USE=qt4 Closes: https://bugs.gentoo.org/641940 Package-Manager: Portage-2.3.28, Repoman-2.3.9 net-analyzer/gr-fosphor/gr-fosphor-9999.ebuild | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/net-analyzer/gr-fosphor/gr-fosphor-9999.ebuild b/net-analyzer/gr-fosphor/gr-fosphor-9999.ebuild index 80888f939b3..29c293990cc 100644 --- a/net-analyzer/gr-fosphor/gr-fosphor-9999.ebuild +++ b/net-analyzer/gr-fosphor/gr-fosphor-9999.ebuild @@ -24,14 +24,10 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}" LICENSE="GPL-3+" SLOT="0" -IUSE="+glfw qt4 wxwidgets" +IUSE="+glfw wxwidgets" -RDEPEND="qt4? ( - dev-qt/qtcore:4 - dev-qt/qtgui:4 - dev-qt/qtopengl:4 - ) - >=net-wireless/gnuradio-3.7_rc:0=[qt4?,wxwidgets?,${PYTHON_USEDEP}] +RDEPEND=" + >=net-wireless/gnuradio-3.7_rc:0=[wxwidgets?,${PYTHON_USEDEP}] media-libs/freetype dev-libs/boost:= glfw? ( >=media-libs/glfw-3 ) @@ -56,9 +52,10 @@ src_configure() { local mycmakeargs=( -DENABLE_DEFAULT=OFF -DENABLE_GLFW="$(usex glfw)" - -DENABLE_QT="$(usex qt4)" + -DENABLE_QT=OFF -DENABLE_WX="$(usex wxwidgets)" -DENABLE_PYTHON=ON ) + # re-enable Qt if port to Qt5 is ever finished cmake-utils_src_configure }