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 CF20C1382C5 for ; Thu, 1 Mar 2018 12:25:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 930CAE08D3; Thu, 1 Mar 2018 12:25:07 +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 58F26E08D3 for ; Thu, 1 Mar 2018 12:25:07 +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 68A77335C39 for ; Thu, 1 Mar 2018 12:25:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BC16C233 for ; Thu, 1 Mar 2018 12:25:04 +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: <1519907010.847549cb62c20083bf23ddb340280f1544db08b4.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-plasma/plasma-desktop/ X-VCS-Repository: proj/kde X-VCS-Files: kde-plasma/plasma-desktop/plasma-desktop-5.12.49.9999.ebuild kde-plasma/plasma-desktop/plasma-desktop-9999.ebuild X-VCS-Directories: kde-plasma/plasma-desktop/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 847549cb62c20083bf23ddb340280f1544db08b4 X-VCS-Branch: master Date: Thu, 1 Mar 2018 12:25:04 +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: 90f341a3-560e-4904-8533-f329cb7779dc X-Archives-Hash: 0adebdc096b350a485d719e6e85d4c4a commit: 847549cb62c20083bf23ddb340280f1544db08b4 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Mar 1 12:23:30 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Mar 1 12:23:30 2018 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=847549cb kde-plasma/plasma-desktop: Add informational pkg_postinst messages USE legacy-systray moved into plasma-meta. Users of minimal plasma-desktop setups can figure out on their own, but let's reward attention to elog. Package-Manager: Portage-2.3.24, Repoman-2.3.6 .../plasma-desktop/plasma-desktop-5.12.49.9999.ebuild | 14 ++++++++++++++ kde-plasma/plasma-desktop/plasma-desktop-9999.ebuild | 14 ++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/kde-plasma/plasma-desktop/plasma-desktop-5.12.49.9999.ebuild b/kde-plasma/plasma-desktop/plasma-desktop-5.12.49.9999.ebuild index d9d9a78858..dd5f103944 100644 --- a/kde-plasma/plasma-desktop/plasma-desktop-5.12.49.9999.ebuild +++ b/kde-plasma/plasma-desktop/plasma-desktop-5.12.49.9999.ebuild @@ -147,3 +147,17 @@ src_test() { kde5_src_test } + +pkg_postinst() { + kde5_pkg_postinst + + if has_version "dev-qt/qtcore:4" && ! has_version "dev-libs/sni-qt" ; then + elog "For Qt4 applications legacy-systray support, please install dev-libs/sni-qt." + fi + if has_version "x11-libs/gtk+:2" && ! has_version "dev-libs/libappindicator:2"; then + elog "For GTK+2 applications legacy-systray support, please install dev-libs/libappindicator:2." + fi + if has_version "x11-libs/gtk+:3" && ! has_version "dev-libs/libappindicator:3"; then + elog "For GTK+3 applications legacy-systray support, please install dev-libs/libappindicator:3." + fi +} diff --git a/kde-plasma/plasma-desktop/plasma-desktop-9999.ebuild b/kde-plasma/plasma-desktop/plasma-desktop-9999.ebuild index d9d9a78858..dd5f103944 100644 --- a/kde-plasma/plasma-desktop/plasma-desktop-9999.ebuild +++ b/kde-plasma/plasma-desktop/plasma-desktop-9999.ebuild @@ -147,3 +147,17 @@ src_test() { kde5_src_test } + +pkg_postinst() { + kde5_pkg_postinst + + if has_version "dev-qt/qtcore:4" && ! has_version "dev-libs/sni-qt" ; then + elog "For Qt4 applications legacy-systray support, please install dev-libs/sni-qt." + fi + if has_version "x11-libs/gtk+:2" && ! has_version "dev-libs/libappindicator:2"; then + elog "For GTK+2 applications legacy-systray support, please install dev-libs/libappindicator:2." + fi + if has_version "x11-libs/gtk+:3" && ! has_version "dev-libs/libappindicator:3"; then + elog "For GTK+3 applications legacy-systray support, please install dev-libs/libappindicator:3." + fi +}