From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BDA3F13838B for ; Thu, 11 Sep 2014 17:16:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38371E08B8; Thu, 11 Sep 2014 17:16:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E2125E08B8 for ; Thu, 11 Sep 2014 17:16:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 14F743401A1 for ; Thu, 11 Sep 2014 17:16:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C445653B2 for ; Thu, 11 Sep 2014 17:16:34 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1410455763.8e84a14fcae0af374a0d6314d82a0b2f791664a5.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: net-irc/konversation/ X-VCS-Repository: proj/kde X-VCS-Files: net-irc/konversation/konversation-9999.ebuild X-VCS-Directories: net-irc/konversation/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 8e84a14fcae0af374a0d6314d82a0b2f791664a5 X-VCS-Branch: master Date: Thu, 11 Sep 2014 17:16:34 +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: 40604b17-2c87-4c42-a999-1ea5965d2c84 X-Archives-Hash: 1c9c8fa98e1a29471058e77ea30b0adf commit: 8e84a14fcae0af374a0d6314d82a0b2f791664a5 Author: Michael Palimaka gentoo org> AuthorDate: Thu Sep 11 17:16:03 2014 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Thu Sep 11 17:16:03 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=8e84a14f [net-irc/konversation] Restore crypt USE flag. Upstream commit: db12387047a12ee239e58f370f5bf47d85017087 Upstream commit: b3210c806f4454f2a9c1555807a01de08c1c6254 Package-Manager: portage-2.2.10 --- net-irc/konversation/konversation-9999.ebuild | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/net-irc/konversation/konversation-9999.ebuild b/net-irc/konversation/konversation-9999.ebuild index c80340b..d36415d 100644 --- a/net-irc/konversation/konversation-9999.ebuild +++ b/net-irc/konversation/konversation-9999.ebuild @@ -13,7 +13,7 @@ HOMEPAGE="http://kde.org/applications/internet/konversation/ http://konversation LICENSE="GPL-2" KEYWORDS="" -IUSE="" +IUSE="+crypt" RDEPEND=" $(add_frameworks_dep karchive) @@ -46,7 +46,16 @@ RDEPEND=" dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-libs/phonon[qt5] + crypt? ( app-crypt/qca:2[qt5] ) " DEPEND="${RDEPEND} nls? ( sys-devel/gettext ) " + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package crypt Qca) + ) + + kde5_src_configure +}