diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2017-09-23 09:49:52 +0300 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2017-09-23 09:50:29 +0300 |
commit | 636f6614cf544c89bcc0de40dca6efa394a41c43 (patch) | |
tree | 162a8a2d8174d971b511a93d5be444aa3b492479 | |
parent | x11-misc/xkeycaps: Use HTTPS. (diff) | |
download | gentoo-636f6614cf544c89bcc0de40dca6efa394a41c43.tar.gz gentoo-636f6614cf544c89bcc0de40dca6efa394a41c43.tar.bz2 gentoo-636f6614cf544c89bcc0de40dca6efa394a41c43.zip |
app-crypt/xca: remove qt4
Gentoo-Bug: 631790
Package-Manager: Portage-2.3.8, Repoman-2.3.1
-rw-r--r-- | app-crypt/xca/xca-1.3.2-r2.ebuild | 19 |
1 files 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 e6f400bcf844..c0ef3a8d4f8c 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 } |