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 817CF13835B for ; Mon, 7 Dec 2020 22:57:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4FF75E09DA; Mon, 7 Dec 2020 22:57:38 +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 37166E09C6 for ; Mon, 7 Dec 2020 22:57:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 00E46341082 for ; Mon, 7 Dec 2020 22:57:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 63B94483 for ; Mon, 7 Dec 2020 22:57:35 +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: <1607381248.6f20523627900b452121b57d4da2423b366bf76a.asturm@gentoo> Subject: [gentoo-commits] proj/kde-sunset:master commit in: media-libs/qimageblitz/ X-VCS-Repository: proj/kde-sunset X-VCS-Files: media-libs/qimageblitz/qimageblitz-0.0.6_p20131029.ebuild X-VCS-Directories: media-libs/qimageblitz/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6f20523627900b452121b57d4da2423b366bf76a X-VCS-Branch: master Date: Mon, 7 Dec 2020 22:57:35 +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: 02e90514-07a1-459a-ae26-30eaf2f8913e X-Archives-Hash: fc8e8e4b835a0aa26b93c9ab703e862e commit: 6f20523627900b452121b57d4da2423b366bf76a Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Dec 7 22:47:28 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Dec 7 22:47:28 2020 +0000 URL: https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=6f205236 media-libs/qimageblitz: Drop IUSE=qt5 Package was last-rited in Gentoo ebuild repo almost a year ago and we'll just ignore it ever had the option. Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> .../qimageblitz/qimageblitz-0.0.6_p20131029.ebuild | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/media-libs/qimageblitz/qimageblitz-0.0.6_p20131029.ebuild b/media-libs/qimageblitz/qimageblitz-0.0.6_p20131029.ebuild index c175cfb0..b4751876 100644 --- a/media-libs/qimageblitz/qimageblitz-0.0.6_p20131029.ebuild +++ b/media-libs/qimageblitz/qimageblitz-0.0.6_p20131029.ebuild @@ -10,20 +10,13 @@ HOMEPAGE="https://websvn.kde.org/trunk/kdesupport/qimageblitz/" SRC_URI="https://dev.gentoo.org/~asturm/distfiles/${P}.tar.xz" LICENSE="GPL-2 LGPL-2" -KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" SLOT="0" -IUSE="altivec cpu_flags_x86_3dnow cpu_flags_x86_mmx cpu_flags_x86_sse cpu_flags_x86_sse2 debug qt5" +KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris" +IUSE="altivec cpu_flags_x86_3dnow cpu_flags_x86_mmx cpu_flags_x86_sse cpu_flags_x86_sse2 debug" DEPEND=" - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - ) - !qt5? ( - dev-qt/qtcore:4 - dev-qt/qtgui:4 - ) + dev-qt/qtcore:4 + dev-qt/qtgui:4 " RDEPEND="${DEPEND}" @@ -34,7 +27,7 @@ PATCHES=( src_configure() { local mycmakeargs=( - -DQT4_BUILD=$(usex !qt5) + -DQT4_BUILD=ON -DHAVE_3DNOW=$(usex cpu_flags_x86_3dnow) -DHAVE_MMX=$(usex cpu_flags_x86_mmx) -DHAVE_SSE=$(usex cpu_flags_x86_sse)