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 D64321396DA for ; Thu, 19 Oct 2017 09:04:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F1A862BC017; Thu, 19 Oct 2017 09:04:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D23622BC001 for ; Thu, 19 Oct 2017 09:04:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 73E5733BF3C for ; Thu, 19 Oct 2017 09:04:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC4FC324 for ; Thu, 19 Oct 2017 09:04:55 +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: <1508403757.3560ca081d5a8b2499413364db01b295393d07ad.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-plasma/systemsettings/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-plasma/systemsettings/systemsettings-5.11.1-r1.ebuild X-VCS-Directories: kde-plasma/systemsettings/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 3560ca081d5a8b2499413364db01b295393d07ad X-VCS-Branch: master Date: Thu, 19 Oct 2017 09:04:55 +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: bc89da85-fc7e-4674-9dc8-c9300d044a9e X-Archives-Hash: 0dd24180f10aacfbb62d4d4a9d902d37 commit: 3560ca081d5a8b2499413364db01b295393d07ad Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Oct 19 09:02:37 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Oct 19 09:02:37 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3560ca08 kde-plasma/systemsettings: Add missing DEPEND Reported-by: Panard inzenet.org> Gentoo-bug: 634644 Package-Manager: Portage-2.3.11, Repoman-2.3.3 .../systemsettings/systemsettings-5.11.1-r1.ebuild | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/kde-plasma/systemsettings/systemsettings-5.11.1-r1.ebuild b/kde-plasma/systemsettings/systemsettings-5.11.1-r1.ebuild new file mode 100644 index 00000000000..5ed1e185c69 --- /dev/null +++ b/kde-plasma/systemsettings/systemsettings-5.11.1-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +KDE_HANDBOOK="forceoptional" +inherit kde5 + +DESCRIPTION="System settings utility" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="classic gtk" + +DEPEND=" + $(add_frameworks_dep kactivities) + $(add_frameworks_dep kactivities-stats) + $(add_frameworks_dep kauth) + $(add_frameworks_dep kcmutils) + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kdbusaddons) + $(add_frameworks_dep kdeclarative) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kio) + $(add_frameworks_dep kitemviews) + $(add_frameworks_dep kpackage) + $(add_frameworks_dep kservice) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kwindowsystem) + $(add_frameworks_dep kxmlgui) + $(add_qt_dep qtdbus) + $(add_qt_dep qtdeclarative 'widgets') + $(add_qt_dep qtgui) + $(add_qt_dep qtwidgets) + classic? ( $(add_frameworks_dep khtml) ) +" +RDEPEND="${DEPEND} + !kde-plasma/systemsettings:4 + $(add_frameworks_dep kirigami) + gtk? ( $(add_plasma_dep kde-gtk-config) ) +" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package classic KF5KHtml) + ) + + kde5_src_configure +}