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 E3CED1389E2 for ; Fri, 26 Dec 2014 15:55:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90FC6E0AD3; Fri, 26 Dec 2014 15:55:43 +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 49AE4E0AD3 for ; Fri, 26 Dec 2014 15:55:43 +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 859A6340562 for ; Fri, 26 Dec 2014 15:55:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 34765D6B8 for ; Fri, 26 Dec 2014 15:55:41 +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: <1419609336.8b2cb285bff91b29d873d00cf4927ac1ae764ada.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: net-libs/libkpeople/ X-VCS-Repository: proj/kde X-VCS-Files: net-libs/libkpeople/libkpeople-9999.ebuild X-VCS-Directories: net-libs/libkpeople/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 8b2cb285bff91b29d873d00cf4927ac1ae764ada X-VCS-Branch: master Date: Fri, 26 Dec 2014 15:55:41 +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: 7b085de0-95c9-4c0c-99ba-68c6b239e426 X-Archives-Hash: be0a3f5eba1cb1c7eddddbeda75c62e5 commit: 8b2cb285bff91b29d873d00cf4927ac1ae764ada Author: Michael Palimaka gentoo org> AuthorDate: Fri Dec 26 15:55:36 2014 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Fri Dec 26 15:55:36 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=8b2cb285 [net-libs/libkpeople] Solve automagic. Package-Manager: portage-2.2.15 --- net-libs/libkpeople/libkpeople-9999.ebuild | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/net-libs/libkpeople/libkpeople-9999.ebuild b/net-libs/libkpeople/libkpeople-9999.ebuild index b02097c..092a368 100644 --- a/net-libs/libkpeople/libkpeople-9999.ebuild +++ b/net-libs/libkpeople/libkpeople-9999.ebuild @@ -10,8 +10,8 @@ DESCRIPTION="KDE contact person abstraction library" HOMEPAGE="https://projects.kde.org/projects/playground/network/libkpeople" LICENSE="LGPL-2.1" -IUSE="semantic-desktop" KEYWORDS="" +IUSE="semantic-desktop" RDEPEND=" $(add_frameworks_dep kconfig) @@ -21,14 +21,20 @@ RDEPEND=" $(add_frameworks_dep kservice) $(add_frameworks_dep kwidgetsaddons) $(add_kdeapps_dep kcontacts) - semantic-desktop? ( - $(add_kdeplasma_dep baloo) - ) dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtsql:5 dev-qt/qtwidgets:5 + semantic-desktop? ( $(add_kdeplasma_dep baloo) ) " DEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package semantic-desktop KF5Baloo) + ) + + kde5_src_configure +}