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 E912B198005 for ; Wed, 6 Mar 2013 10:10:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5D19E04EB; Wed, 6 Mar 2013 10:10:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7D235E04EB for ; Wed, 6 Mar 2013 10:10:10 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6437533DB94 for ; Wed, 6 Mar 2013 10:10:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id F13F4E4073 for ; Wed, 6 Mar 2013 10:10:04 +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: <1362564513.540776febfdb8aeb17d1b8ec1532e7af1a32b57a.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-base/dolphin/ X-VCS-Repository: proj/kde X-VCS-Files: kde-base/dolphin/dolphin-4.10.1.ebuild kde-base/dolphin/dolphin-4.10.49.9999.ebuild kde-base/dolphin/dolphin-9999.ebuild X-VCS-Directories: kde-base/dolphin/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 540776febfdb8aeb17d1b8ec1532e7af1a32b57a X-VCS-Branch: master Date: Wed, 6 Mar 2013 10:10: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: 338993bf-07e2-493c-8431-b0069e740473 X-Archives-Hash: 5077eb1defcdf2b40541f9e2a7537d0f commit: 540776febfdb8aeb17d1b8ec1532e7af1a32b57a Author: Michael Palimaka gentoo org> AuthorDate: Wed Mar 6 10:08:33 2013 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Wed Mar 6 10:08:33 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=540776fe [kde-base/dolphin] Only display elog if package is not installed. Package-Manager: portage-2.1.11.55 --- kde-base/dolphin/dolphin-4.10.1.ebuild | 7 ++++--- kde-base/dolphin/dolphin-4.10.49.9999.ebuild | 7 ++++--- kde-base/dolphin/dolphin-9999.ebuild | 7 ++++--- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/kde-base/dolphin/dolphin-4.10.1.ebuild b/kde-base/dolphin/dolphin-4.10.1.ebuild index 816f7bd..5d4161d 100644 --- a/kde-base/dolphin/dolphin-4.10.1.ebuild +++ b/kde-base/dolphin/dolphin-4.10.1.ebuild @@ -53,7 +53,8 @@ src_configure() { pkg_postinst() { kde4-base_pkg_postinst - echo - elog "For .exe file preview support, install media-gfx/icoutils." - echo + + if ! has_version media-gfx/icoutils ; then + elog "For .exe file preview support, install media-gfx/icoutils." + fi } diff --git a/kde-base/dolphin/dolphin-4.10.49.9999.ebuild b/kde-base/dolphin/dolphin-4.10.49.9999.ebuild index 7572d61..f7d06e3 100644 --- a/kde-base/dolphin/dolphin-4.10.49.9999.ebuild +++ b/kde-base/dolphin/dolphin-4.10.49.9999.ebuild @@ -53,7 +53,8 @@ src_configure() { pkg_postinst() { kde4-base_pkg_postinst - echo - elog "For .exe file preview support, install media-gfx/icoutils." - echo + + if ! has_version media-gfx/icoutils ; then + elog "For .exe file preview support, install media-gfx/icoutils." + fi } diff --git a/kde-base/dolphin/dolphin-9999.ebuild b/kde-base/dolphin/dolphin-9999.ebuild index 7572d61..f7d06e3 100644 --- a/kde-base/dolphin/dolphin-9999.ebuild +++ b/kde-base/dolphin/dolphin-9999.ebuild @@ -53,7 +53,8 @@ src_configure() { pkg_postinst() { kde4-base_pkg_postinst - echo - elog "For .exe file preview support, install media-gfx/icoutils." - echo + + if ! has_version media-gfx/icoutils ; then + elog "For .exe file preview support, install media-gfx/icoutils." + fi }