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 0CF69139695 for ; Sun, 19 Mar 2017 23:57:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2AEEE21C0B2; 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 03C2E21C08F for ; Sun, 19 Mar 2017 23:57:44 +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 C2819340AC7 for ; Sun, 19 Mar 2017 23:57:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2EB5E6E24 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: <1489967850.e52a1a0add53b6ea4dc134c492ee8a4c3e0ac616.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/kmailtransport/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/kmailtransport/kmailtransport-16.12.3.ebuild X-VCS-Directories: kde-apps/kmailtransport/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e52a1a0add53b6ea4dc134c492ee8a4c3e0ac616 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: d9bb0ebe-4655-42a9-a46e-f5be2eba0522 X-Archives-Hash: 6de05e339ac74f4786e7db8f109d3c95 commit: e52a1a0add53b6ea4dc134c492ee8a4c3e0ac616 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 19 22:37:07 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 19 23:57:30 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e52a1a0a kde-apps/kmailtransport: Drop USE=ssl Fails to build if disabled, and who would disable it anyway. Package-Manager: Portage-2.3.3, Repoman-2.3.1 kde-apps/kmailtransport/kmailtransport-16.12.3.ebuild | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/kde-apps/kmailtransport/kmailtransport-16.12.3.ebuild b/kde-apps/kmailtransport/kmailtransport-16.12.3.ebuild index 40ed4ef6bae..4b9bf10338f 100644 --- a/kde-apps/kmailtransport/kmailtransport-16.12.3.ebuild +++ b/kde-apps/kmailtransport/kmailtransport-16.12.3.ebuild @@ -10,7 +10,7 @@ inherit kde5 DESCRIPTION="Mail transport service" LICENSE="GPL-2+" KEYWORDS="~amd64 ~x86" -IUSE="ssl" +IUSE="" COMMON_DEPEND=" $(add_frameworks_dep kcmutils) @@ -29,7 +29,7 @@ COMMON_DEPEND=" $(add_qt_dep qtgui) $(add_qt_dep qtnetwork) $(add_qt_dep qtwidgets) - ssl? ( dev-libs/cyrus-sasl ) + dev-libs/cyrus-sasl " DEPEND="${COMMON_DEPEND} test? ( $(add_frameworks_dep ktextwidgets) ) @@ -49,10 +49,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 -}