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 E0CA6139694 for ; Sun, 19 Mar 2017 23:57:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 65E7521C08F; Sun, 19 Mar 2017 23:57:45 +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 4120A21C08F for ; Sun, 19 Mar 2017 23:57:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 15FF6341301 for ; Sun, 19 Mar 2017 23:57:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7BEE86E28 for ; Sun, 19 Mar 2017 23:57:42 +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: <1489967852.a971271c766d0c2b64c14b99fdee3b3873e79cb1.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/kldap/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/kldap/kldap-16.12.3.ebuild X-VCS-Directories: kde-apps/kldap/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a971271c766d0c2b64c14b99fdee3b3873e79cb1 X-VCS-Branch: master Date: Sun, 19 Mar 2017 23:57:42 +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: 82434cf3-5e7e-43d5-8116-0753796b76a5 X-Archives-Hash: 223955de4b150a59f421b25184985178 commit: a971271c766d0c2b64c14b99fdee3b3873e79cb1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 19 22:49:06 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 19 23:57:32 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a971271c kde-apps/kldap: Drop USE=ssl It may build, but down the line cyrus-sasl is pulled in anyway. Package-Manager: Portage-2.3.3, Repoman-2.3.1 kde-apps/kldap/kldap-16.12.3.ebuild | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/kde-apps/kldap/kldap-16.12.3.ebuild b/kde-apps/kldap/kldap-16.12.3.ebuild index 1a673642f50..ad2fa83781a 100644 --- a/kde-apps/kldap/kldap-16.12.3.ebuild +++ b/kde-apps/kldap/kldap-16.12.3.ebuild @@ -10,7 +10,7 @@ inherit kde5 DESCRIPTION="Library for interacting with LDAP servers" LICENSE="GPL-2+" KEYWORDS="~amd64 ~x86" -IUSE="ssl" +IUSE="" DEPEND=" $(add_frameworks_dep kcompletion) @@ -20,7 +20,7 @@ DEPEND=" $(add_qt_dep qtgui) $(add_qt_dep qtwidgets) net-nds/openldap - ssl? ( dev-libs/cyrus-sasl ) + dev-libs/cyrus-sasl " RDEPEND="${DEPEND} !kde-apps/kdepim-kioslaves @@ -36,11 +36,3 @@ src_prepare() { -i kioslave/CMakeLists.txt || die "failed to comment add_subdirectory(doc)" fi } - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use_find_package ssl Sasl2) - ) - - kde5_src_configure -}