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 192781384B4 for ; Mon, 4 Jan 2016 18:12:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B55A5E07F9; Mon, 4 Jan 2016 18:12:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 47B2BE07F9 for ; Mon, 4 Jan 2016 18:12:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 15E0F340931 for ; Mon, 4 Jan 2016 18:12:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 62386CFE for ; Mon, 4 Jan 2016 18:12:24 +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: <1451931134.20f1b82d255b934f7dbf23b01c501b874110384e.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/dolphin/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/dolphin/dolphin-4.14.3-r1.ebuild X-VCS-Directories: kde-apps/dolphin/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 20f1b82d255b934f7dbf23b01c501b874110384e X-VCS-Branch: master Date: Mon, 4 Jan 2016 18:12:24 +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: b2863f47-244e-44ba-82c2-8b1c96d6256d X-Archives-Hash: 5886a0ad8398cec9b32f83691378c71f commit: 20f1b82d255b934f7dbf23b01c501b874110384e Author: Andreas Sturmlechner gmail com> AuthorDate: Mon Jan 4 17:58:44 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Mon Jan 4 18:12:14 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20f1b82d kde-apps/dolphin: Add RDEPEND on kde-apps/konsolepart kde-apps/dolphin/dolphin-4.14.3-r1.ebuild | 59 +++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/kde-apps/dolphin/dolphin-4.14.3-r1.ebuild b/kde-apps/dolphin/dolphin-4.14.3-r1.ebuild new file mode 100644 index 0000000..ae6d9f7 --- /dev/null +++ b/kde-apps/dolphin/dolphin-4.14.3-r1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +KDE_HANDBOOK="optional" +KMNAME="kde-baseapps" +inherit kde4-meta + +DESCRIPTION="A KDE filemanager focusing on usability" +HOMEPAGE="https://dolphin.kde.org https://www.kde.org/applications/system/dolphin" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="debug semantic-desktop thumbnail" + +DEPEND=" + $(add_kdebase_dep kactivities '' 4.13) + $(add_kdeapps_dep libkonq) + media-libs/phonon[qt4] + x11-libs/libXrender + semantic-desktop? ( + $(add_kdebase_dep baloo) + $(add_kdeapps_dep baloo-widgets) + $(add_kdebase_dep kfilemetadata) + ) +" +RDEPEND="${DEPEND} + $(add_kdeapps_dep kdebase-kioslaves) + $(add_kdeapps_dep kfind) + $(add_kdeapps_dep konsolepart) + thumbnail? ( + $(add_kdeapps_dep thumbnailers) + || ( + $(add_kdeapps_dep ffmpegthumbs) + $(add_kdeapps_dep mplayerthumbs) + ) + ) +" + +RESTRICT="test" +# bug 393129 + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_with semantic-desktop Baloo) + $(cmake-utils_use_with semantic-desktop BalooWidgets) + $(cmake-utils_use_with semantic-desktop KFileMetaData) + ) + + kde4-meta_src_configure +} + +pkg_postinst() { + kde4-base_pkg_postinst + + if ! has_version media-gfx/icoutils ; then + elog "For .exe file preview support, install media-gfx/icoutils." + fi +}