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 BA0DF198005 for ; Wed, 6 Mar 2013 10:05:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75462E05B9; Wed, 6 Mar 2013 10:05:03 +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 0E2E0E05B9 for ; Wed, 6 Mar 2013 10:05:02 +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 22D4A33DC7B for ; Wed, 6 Mar 2013 10:05:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id ADE6CE4073 for ; Wed, 6 Mar 2013 10:05:00 +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: <1362564246.5f593d8b057815ef2147de40b388534005ea161d.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-base/ark/ X-VCS-Repository: proj/kde X-VCS-Files: kde-base/ark/ark-4.10.1.ebuild kde-base/ark/ark-4.10.49.9999.ebuild kde-base/ark/ark-9999.ebuild X-VCS-Directories: kde-base/ark/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 5f593d8b057815ef2147de40b388534005ea161d X-VCS-Branch: master Date: Wed, 6 Mar 2013 10:05:00 +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: a1d59c0f-8c6a-4eef-ba84-5f13eb6fd4f8 X-Archives-Hash: b2992046cc5a913724426e10ae4dcb5b commit: 5f593d8b057815ef2147de40b388534005ea161d Author: Michael Palimaka gentoo org> AuthorDate: Wed Mar 6 10:04:06 2013 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Wed Mar 6 10:04:06 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=5f593d8b [kde-base/ark] Only display elog if package is not installed. Package-Manager: portage-2.1.11.55 --- kde-base/ark/ark-4.10.1.ebuild | 5 ++++- kde-base/ark/ark-4.10.49.9999.ebuild | 5 ++++- kde-base/ark/ark-9999.ebuild | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/kde-base/ark/ark-4.10.1.ebuild b/kde-base/ark/ark-4.10.1.ebuild index 90195fb..f016d77 100644 --- a/kde-base/ark/ark-4.10.1.ebuild +++ b/kde-base/ark/ark-4.10.1.ebuild @@ -32,5 +32,8 @@ src_configure() { pkg_postinst() { kde4-base_pkg_postinst - elog "For creating rar archives, install app-arch/rar" + + if ! has_version app-arch/rar ; then + elog "For creating rar archives, install app-arch/rar" + fi } diff --git a/kde-base/ark/ark-4.10.49.9999.ebuild b/kde-base/ark/ark-4.10.49.9999.ebuild index a7f5e29..49edd1e 100644 --- a/kde-base/ark/ark-4.10.49.9999.ebuild +++ b/kde-base/ark/ark-4.10.49.9999.ebuild @@ -32,5 +32,8 @@ src_configure() { pkg_postinst() { kde4-base_pkg_postinst - elog "For creating rar archives, install app-arch/rar" + + if ! has_version app-arch/rar ; then + elog "For creating rar archives, install app-arch/rar" + fi } diff --git a/kde-base/ark/ark-9999.ebuild b/kde-base/ark/ark-9999.ebuild index a7f5e29..49edd1e 100644 --- a/kde-base/ark/ark-9999.ebuild +++ b/kde-base/ark/ark-9999.ebuild @@ -32,5 +32,8 @@ src_configure() { pkg_postinst() { kde4-base_pkg_postinst - elog "For creating rar archives, install app-arch/rar" + + if ! has_version app-arch/rar ; then + elog "For creating rar archives, install app-arch/rar" + fi }