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 1CFB4138BED for ; Fri, 16 Oct 2015 18:24:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF7AB21C00A; Fri, 16 Oct 2015 18:24:25 +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 5857221C009 for ; Fri, 16 Oct 2015 18:24:25 +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 6B2FE340A42 for ; Fri, 16 Oct 2015 18:24:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 722C4E6A for ; Fri, 16 Oct 2015 18:24:21 +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: <1445019849.c0a2e0a9e04a836a65caeb609bd9d00d39a3e129.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/kdenetwork-filesharing/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/kdenetwork-filesharing/kdenetwork-filesharing-9999.ebuild X-VCS-Directories: kde-apps/kdenetwork-filesharing/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: c0a2e0a9e04a836a65caeb609bd9d00d39a3e129 X-VCS-Branch: master Date: Fri, 16 Oct 2015 18:24:21 +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: 6f6085ad-322f-47e1-84cb-8641f9ff5c69 X-Archives-Hash: f5bfadee3441699a7d0174ea5591e8e7 commit: c0a2e0a9e04a836a65caeb609bd9d00d39a3e129 Author: Andreas Sturmlechner gmail com> AuthorDate: Thu Oct 15 20:20:53 2015 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Fri Oct 16 18:24:09 2015 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=c0a2e0a9 kde-apps/kdenetwork-filesharing: Add kf5 version Package-Manager: portage-2.2.23 .../kdenetwork-filesharing-9999.ebuild | 23 ++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/kde-apps/kdenetwork-filesharing/kdenetwork-filesharing-9999.ebuild b/kde-apps/kdenetwork-filesharing/kdenetwork-filesharing-9999.ebuild index 6cfc6e5..dbc8de3 100644 --- a/kde-apps/kdenetwork-filesharing/kdenetwork-filesharing-9999.ebuild +++ b/kde-apps/kdenetwork-filesharing/kdenetwork-filesharing-9999.ebuild @@ -4,8 +4,27 @@ EAPI=5 -inherit kde4-base +inherit kde5 DESCRIPTION="kcontrol filesharing config module for SMB" KEYWORDS="" -IUSE="debug" +IUSE="" + +DEPEND=" + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kio) + $(add_frameworks_dep kwidgetsaddons) + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + -DCMAKE_DISABLE_FIND_PACKAGE_PackageKitQt5=ON + ) + + kde5_src_configure +}