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 C8023139083 for ; Thu, 14 Dec 2017 23:13:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02282E0F6E; Thu, 14 Dec 2017 23:13:32 +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 D858FE0F6E for ; Thu, 14 Dec 2017 23:13:31 +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 070FF33BF01 for ; Thu, 14 Dec 2017 23:13:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2F39AE75 for ; Thu, 14 Dec 2017 23:13:29 +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: <1513293184.4bf568ab97ef043b9840f947e562a42b1c77022d.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde5.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 4bf568ab97ef043b9840f947e562a42b1c77022d X-VCS-Branch: master Date: Thu, 14 Dec 2017 23:13:29 +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: f4985772-af42-4a94-b3b5-269c5dc6b6e3 X-Archives-Hash: 1362fd2bbc549624d8e1d70fe6700218 commit: 4bf568ab97ef043b9840f947e562a42b1c77022d Author: Johannes Huber gentoo org> AuthorDate: Wed May 18 08:05:14 2016 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Dec 14 23:13:04 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=4bf568ab kde5.eclass: Add icons as runtime dependency Most applications use icons at runtime, so add them when KDE_AUTODEPS is enabled. Bug: https://bugs.gentoo.org/564838 eclass/kde5.eclass | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index 81d4b8a373..826e0abf10 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -194,6 +194,11 @@ case ${KDE_AUTODEPS} in RDEPEND+=" >=kde-frameworks/kf-env-4" COMMONDEPEND+=" $(add_qt_dep qtcore)" + # all packages need breeze/oxygen icons for basic iconset, bug #564838 + if [[ ${PN} != breeze-icons && ${PN} != oxygen-icons ]]; then + RDEPEND+=" || ( $(add_frameworks_dep breeze-icons) kde-frameworks/oxygen-icons:* )" + fi + case ${CATEGORY} in kde-frameworks | \ kde-plasma)