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 A71EC139694 for ; Sun, 19 Mar 2017 22:57:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05F6021C208; Sun, 19 Mar 2017 22:56:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 DB9F321C208 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 02185340BEA 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 5C7016E17 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: <1489964185.e4e668a6c370ee82e7343321e279398ba1aa51b5.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/kmailtransport/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/kmailtransport/kmailtransport-9999.ebuild X-VCS-Directories: kde-apps/kmailtransport/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e4e668a6c370ee82e7343321e279398ba1aa51b5 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: 4f11f6c2-aae4-4e94-9325-b65d8d67e4bc X-Archives-Hash: d788996ccdc88b40bd64c07ed19e9d6f commit: e4e668a6c370ee82e7343321e279398ba1aa51b5 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 19 22:37:07 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 19 22:56:25 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=e4e668a6 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-9999.ebuild | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/kde-apps/kmailtransport/kmailtransport-9999.ebuild b/kde-apps/kmailtransport/kmailtransport-9999.ebuild index e4ca5d6f98..90198e2d1e 100644 --- a/kde-apps/kmailtransport/kmailtransport-9999.ebuild +++ b/kde-apps/kmailtransport/kmailtransport-9999.ebuild @@ -10,7 +10,7 @@ inherit kde5 DESCRIPTION="Mail transport service" LICENSE="GPL-2+" KEYWORDS="" -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 -}