Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/dolphin/
Date: Mon, 04 Jan 2016 18:12:32
Message-Id: 1451931134.20f1b82d255b934f7dbf23b01c501b874110384e.kensington@gentoo
1 commit: 20f1b82d255b934f7dbf23b01c501b874110384e
2 Author: Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
3 AuthorDate: Mon Jan 4 17:58:44 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 4 18:12:14 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20f1b82d
7
8 kde-apps/dolphin: Add RDEPEND on kde-apps/konsolepart
9
10 kde-apps/dolphin/dolphin-4.14.3-r1.ebuild | 59 +++++++++++++++++++++++++++++++
11 1 file changed, 59 insertions(+)
12
13 diff --git a/kde-apps/dolphin/dolphin-4.14.3-r1.ebuild b/kde-apps/dolphin/dolphin-4.14.3-r1.ebuild
14 new file mode 100644
15 index 0000000..ae6d9f7
16 --- /dev/null
17 +++ b/kde-apps/dolphin/dolphin-4.14.3-r1.ebuild
18 @@ -0,0 +1,59 @@
19 +# Copyright 1999-2016 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI=5
24 +
25 +KDE_HANDBOOK="optional"
26 +KMNAME="kde-baseapps"
27 +inherit kde4-meta
28 +
29 +DESCRIPTION="A KDE filemanager focusing on usability"
30 +HOMEPAGE="https://dolphin.kde.org https://www.kde.org/applications/system/dolphin"
31 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
32 +IUSE="debug semantic-desktop thumbnail"
33 +
34 +DEPEND="
35 + $(add_kdebase_dep kactivities '' 4.13)
36 + $(add_kdeapps_dep libkonq)
37 + media-libs/phonon[qt4]
38 + x11-libs/libXrender
39 + semantic-desktop? (
40 + $(add_kdebase_dep baloo)
41 + $(add_kdeapps_dep baloo-widgets)
42 + $(add_kdebase_dep kfilemetadata)
43 + )
44 +"
45 +RDEPEND="${DEPEND}
46 + $(add_kdeapps_dep kdebase-kioslaves)
47 + $(add_kdeapps_dep kfind)
48 + $(add_kdeapps_dep konsolepart)
49 + thumbnail? (
50 + $(add_kdeapps_dep thumbnailers)
51 + || (
52 + $(add_kdeapps_dep ffmpegthumbs)
53 + $(add_kdeapps_dep mplayerthumbs)
54 + )
55 + )
56 +"
57 +
58 +RESTRICT="test"
59 +# bug 393129
60 +
61 +src_configure() {
62 + local mycmakeargs=(
63 + $(cmake-utils_use_with semantic-desktop Baloo)
64 + $(cmake-utils_use_with semantic-desktop BalooWidgets)
65 + $(cmake-utils_use_with semantic-desktop KFileMetaData)
66 + )
67 +
68 + kde4-meta_src_configure
69 +}
70 +
71 +pkg_postinst() {
72 + kde4-base_pkg_postinst
73 +
74 + if ! has_version media-gfx/icoutils ; then
75 + elog "For .exe file preview support, install media-gfx/icoutils."
76 + fi
77 +}