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 AACAD59CA9 for ; Wed, 30 Mar 2016 17:59:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DDC89E083A; Wed, 30 Mar 2016 17:59:52 +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 82D5EE083A for ; Wed, 30 Mar 2016 17:59:47 +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 05EEF340BD7 for ; Wed, 30 Mar 2016 17:59:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A2FF20E for ; Wed, 30 Mar 2016 17:59:40 +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: <1459360770.d6dc59866cb248dde6bd12407b7b0d92200ccc14.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-misc/plasma-applet-redshift-control/ X-VCS-Repository: proj/kde X-VCS-Files: kde-misc/plasma-applet-redshift-control/plasma-applet-redshift-control-9999.ebuild X-VCS-Directories: kde-misc/plasma-applet-redshift-control/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: d6dc59866cb248dde6bd12407b7b0d92200ccc14 X-VCS-Branch: master Date: Wed, 30 Mar 2016 17:59:40 +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: ad8fbb4a-ae78-46ea-85c6-b0fb39a4b855 X-Archives-Hash: 4634d165bfbea305cebf8e1373dbf713 commit: d6dc59866cb248dde6bd12407b7b0d92200ccc14 Author: Marc Joliet gmx de> AuthorDate: Wed Mar 30 12:11:44 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Wed Mar 30 17:59:30 2016 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=d6dc5986 kde-misc/plasma-applet-redshift-control: add dep on kde-frameworks/plasma While upgrading to KDE Plasma, I hit the following compilation failure: CMake Warning at CMakeLists.txt:13 (find_package): By not providing "FindKF5Plasma.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package configuration file provided by "KF5Plasma", but CMake did not find one. Could not find a package configuration file provided by "KF5Plasma" with any of the following names: KF5PlasmaConfig.cmake kf5plasma-config.cmake Add the installation prefix of "KF5Plasma" to CMAKE_PREFIX_PATH or set "KF5Plasma_DIR" to a directory containing one of the above files. If "KF5Plasma" provides a separate development package or SDK, be sure it has been installed. CMake Error at CMakeLists.txt:17 (plasma_install_package): Unknown CMake command "plasma_install_package". KF5PlasmaConfig.cmake is provided by kde-frameworks/plasma, so kde-misc/plasma-applet-redshift-control needs to depend on it. Package-Manager: portage-2.2.26 .../plasma-applet-redshift-control-9999.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kde-misc/plasma-applet-redshift-control/plasma-applet-redshift-control-9999.ebuild b/kde-misc/plasma-applet-redshift-control/plasma-applet-redshift-control-9999.ebuild index ab67fba..4a1c566 100644 --- a/kde-misc/plasma-applet-redshift-control/plasma-applet-redshift-control-9999.ebuild +++ b/kde-misc/plasma-applet-redshift-control/plasma-applet-redshift-control-9999.ebuild @@ -15,4 +15,7 @@ LICENSE="GPL-2+" KEYWORDS="" IUSE="" -RDEPEND="x11-misc/redshift" +DEPEND="$(add_frameworks_dep plasma)" +RDEPEND="${DEPEND} + x11-misc/redshift +"