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 0D3FB1396D0 for ; Sat, 23 Sep 2017 06:50:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5081CE0BDF; Sat, 23 Sep 2017 06:50:54 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 302BEE0BDF for ; Sat, 23 Sep 2017 06:50:54 +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 A185233BEC7 for ; Sat, 23 Sep 2017 06:50:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 466F69064 for ; Sat, 23 Sep 2017 06:50:50 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1506149429.636f6614cf544c89bcc0de40dca6efa394a41c43.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/xca/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/xca/xca-1.3.2-r2.ebuild X-VCS-Directories: app-crypt/xca/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: 636f6614cf544c89bcc0de40dca6efa394a41c43 X-VCS-Branch: master Date: Sat, 23 Sep 2017 06:50:50 +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: ae164332-395b-4685-93b9-3f2eeddfdf1f X-Archives-Hash: 71fb1b50e3884514c9ef3a6755874ad3 commit: 636f6614cf544c89bcc0de40dca6efa394a41c43 Author: Alon Bar-Lev gentoo org> AuthorDate: Sat Sep 23 06:49:52 2017 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Sat Sep 23 06:50:29 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=636f6614 app-crypt/xca: remove qt4 Gentoo-Bug: 631790 Package-Manager: Portage-2.3.8, Repoman-2.3.1 app-crypt/xca/xca-1.3.2-r2.ebuild | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/app-crypt/xca/xca-1.3.2-r2.ebuild b/app-crypt/xca/xca-1.3.2-r2.ebuild index e6f400bcf84..c0ef3a8d4f8 100644 --- a/app-crypt/xca/xca-1.3.2-r2.ebuild +++ b/app-crypt/xca/xca-1.3.2-r2.ebuild @@ -3,7 +3,7 @@ EAPI="6" -inherit flag-o-matic toolchain-funcs autotools +inherit flag-o-matic autotools DESCRIPTION="A GUI to OpenSSL, RSA public keys, certificates, signing requests etc" HOMEPAGE="http://xca.sourceforge.net" @@ -12,19 +12,14 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="bindist doc libressl qt4 qt5" - -REQUIRED_USE="|| ( qt4 qt5 )" +IUSE="bindist doc libressl" RDEPEND=" + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 !libressl? ( dev-libs/openssl:0=[bindist=] ) libressl? ( dev-libs/libressl:0= ) - doc? ( app-text/linuxdoc-tools ) - qt5? ( - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - ) - qt4? ( dev-qt/qtgui:4 )" + doc? ( app-text/linuxdoc-tools )" DEPEND="${RDEPEND}" PATCHES=( @@ -39,9 +34,9 @@ src_prepare() { src_configure() { # bug #595440 - use qt5 && append-cxxflags -std=c++11 + append-cxxflags -std=c++11 econf \ - --with-qt-version=$(use qt5 && echo 5 || echo 4) \ + --with-qt-version=5 \ $(use_enable doc) \ STRIP=true }