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 06810139694 for ; Sun, 19 Mar 2017 22:56:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56B4321C0B2; Sun, 19 Mar 2017 22:56:48 +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 2FD4B21C0B2 for ; Sun, 19 Mar 2017 22:56:48 +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 077CC340DF9 for ; Sun, 19 Mar 2017 22:56:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96C856E1A for ; Sun, 19 Mar 2017 22:56:45 +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: <1489964186.fce78aaaa1e7fa575580fcfc9bf3caf6b07560b4.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/kldap/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/kldap/kldap-9999.ebuild X-VCS-Directories: kde-apps/kldap/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: fce78aaaa1e7fa575580fcfc9bf3caf6b07560b4 X-VCS-Branch: master Date: Sun, 19 Mar 2017 22:56:45 +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: 2612cc24-e2a6-4eee-8f08-5bb6669a7a47 X-Archives-Hash: 83f7d204ff3bb17eb42573117bae26b9 commit: fce78aaaa1e7fa575580fcfc9bf3caf6b07560b4 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 19 22:49:06 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 19 22:56:26 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=fce78aaa 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-9999.ebuild | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/kde-apps/kldap/kldap-9999.ebuild b/kde-apps/kldap/kldap-9999.ebuild index ef777bdff4..84fe7b4f70 100644 --- a/kde-apps/kldap/kldap-9999.ebuild +++ b/kde-apps/kldap/kldap-9999.ebuild @@ -10,7 +10,7 @@ inherit kde5 DESCRIPTION="Library for interacting with LDAP servers" LICENSE="GPL-2+" KEYWORDS="" -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 @@ -34,11 +34,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 -}