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 2C637138433 for ; Wed, 19 Oct 2016 14:39:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F1C0E0B25; Wed, 19 Oct 2016 14:39:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 68C64E0B25 for ; Wed, 19 Oct 2016 14:39:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 768B534119A for ; Wed, 19 Oct 2016 14:39:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D9662EE for ; Wed, 19 Oct 2016 14:39:19 +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: <1476887952.26bf76caa565de0d9ca3fe2dadf550d8c27c4e40.polynomial-c@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: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 26bf76caa565de0d9ca3fe2dadf550d8c27c4e40 X-VCS-Branch: master Date: Wed, 19 Oct 2016 14:39:19 +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: 63daf008-536a-4773-8db2-eb8fdfdf27fe X-Archives-Hash: fd22832fdd1e7da8a54e9a44a13ebb6e commit: 26bf76caa565de0d9ca3fe2dadf550d8c27c4e40 Author: Lars Wendler gentoo org> AuthorDate: Wed Oct 19 14:27:55 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Oct 19 14:39:12 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26bf76ca app-crypt/xca: Fixed compilation with >=qt-5.7.0 (bug #595440). Package-Manager: portage-2.3.2 Signed-off-by: Lars Wendler gentoo.org> app-crypt/xca/xca-1.3.2-r2.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app-crypt/xca/xca-1.3.2-r2.ebuild b/app-crypt/xca/xca-1.3.2-r2.ebuild index 2e7e236..117d698 100644 --- a/app-crypt/xca/xca-1.3.2-r2.ebuild +++ b/app-crypt/xca/xca-1.3.2-r2.ebuild @@ -4,7 +4,7 @@ EAPI="5" -inherit eutils toolchain-funcs autotools +inherit eutils flag-o-matic toolchain-funcs autotools DESCRIPTION="A GUI to OpenSSL, RSA public keys, certificates, signing requests etc" HOMEPAGE="http://xca.sourceforge.net" @@ -32,6 +32,8 @@ src_prepare() { } src_configure() { + # bug #595440 + use qt5 && append-cxxflags -std=c++11 econf \ --docdir="${EPREFIX}/usr/share/doc/${PF}" \ --with-qt-version=$(use qt5 && echo 5 || echo 4) \