From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-929599-garchives=archives.gentoo.org@lists.gentoo.org> 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 76AE5139085 for <garchives@archives.gentoo.org>; Sun, 5 Feb 2017 15:22:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8349C21C04E; Sun, 5 Feb 2017 15:22:16 +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 5CCB421C04E for <gentoo-commits@lists.gentoo.org>; Sun, 5 Feb 2017 15:22:16 +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 235D93412B7 for <gentoo-commits@lists.gentoo.org>; Sun, 5 Feb 2017 15:22:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89B913B8E for <gentoo-commits@lists.gentoo.org>; Sun, 5 Feb 2017 15:22:13 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@gentoo.org> 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" <asturm@gentoo.org> Message-ID: <1486308060.6cf40c5757760efbb5abb2c28d386c6ccf9948bb.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/gwenview/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/gwenview/gwenview-16.12.49.9999.ebuild kde-apps/gwenview/gwenview-9999.ebuild X-VCS-Directories: kde-apps/gwenview/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6cf40c5757760efbb5abb2c28d386c6ccf9948bb X-VCS-Branch: master Date: Sun, 5 Feb 2017 15:22:13 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6d224fb3-dfb3-479c-a028-f3d31b658a1f X-Archives-Hash: a590804e14b610fc138f7ec4b3076b51 commit: 6cf40c5757760efbb5abb2c28d386c6ccf9948bb Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Sun Feb 5 15:21:00 2017 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sun Feb 5 15:21:00 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=6cf40c57 kde-apps/gwenview: Re-add pkg_postinst info about kipi-plugins,svgpart Gentoo-bug: 608308 Package-Manager: portage-2.3.3 kde-apps/gwenview/gwenview-16.12.49.9999.ebuild | 12 ++++++++++++ kde-apps/gwenview/gwenview-9999.ebuild | 12 ++++++++++++ 2 files changed, 24 insertions(+) diff --git a/kde-apps/gwenview/gwenview-16.12.49.9999.ebuild b/kde-apps/gwenview/gwenview-16.12.49.9999.ebuild index 258b53a..e85f409 100644 --- a/kde-apps/gwenview/gwenview-16.12.49.9999.ebuild +++ b/kde-apps/gwenview/gwenview-16.12.49.9999.ebuild @@ -84,3 +84,15 @@ src_configure() { kde5_src_configure } + +pkg_postinst() { + kde5_pkg_postinst + + if ! has_version kde-apps/svgpart:${SLOT} ; then + elog "For SVG support, install kde-apps/svgpart:${SLOT}" + fi + + if use kipi && ! has_version media-plugins/kipi-plugins ; then + elog "Plugins for the KIPI interface can be found in media-plugins/kipi-plugins" + fi +} diff --git a/kde-apps/gwenview/gwenview-9999.ebuild b/kde-apps/gwenview/gwenview-9999.ebuild index 483763d..8bac9e0 100644 --- a/kde-apps/gwenview/gwenview-9999.ebuild +++ b/kde-apps/gwenview/gwenview-9999.ebuild @@ -84,3 +84,15 @@ src_configure() { kde5_src_configure } + +pkg_postinst() { + kde5_pkg_postinst + + if ! has_version kde-apps/svgpart:${SLOT} ; then + elog "For SVG support, install kde-apps/svgpart:${SLOT}" + fi + + if use kipi && ! has_version media-plugins/kipi-plugins ; then + elog "Plugins for the KIPI interface can be found in media-plugins/kipi-plugins" + fi +}