Gentoo Archives: gentoo-commits

From: "Johannes Huber (johu)" <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/dolphin: dolphin-4.11.3-r1.ebuild ChangeLog dolphin-4.11.3.ebuild
Date: Sat, 09 Nov 2013 13:44:01
Message-Id: 20131109134352.A34092004B@flycatcher.gentoo.org
1 johu 13/11/09 13:43:52
2
3 Modified: ChangeLog
4 Added: dolphin-4.11.3-r1.ebuild
5 Removed: dolphin-4.11.3.ebuild
6 Log:
7 Revision bump adds upstream patch announced on packagers ml. Patch fixes clicking the trash plasmoid or starting Dolphin from the command line with a URL that includes another kioslave will just open the home folder.
8
9 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key F3CFD2BD)
10
11 Revision Changes Path
12 1.209 kde-base/dolphin/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/dolphin/ChangeLog?rev=1.209&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/dolphin/ChangeLog?rev=1.209&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/dolphin/ChangeLog?r1=1.208&r2=1.209
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/kde-base/dolphin/ChangeLog,v
21 retrieving revision 1.208
22 retrieving revision 1.209
23 diff -u -r1.208 -r1.209
24 --- ChangeLog 5 Nov 2013 22:23:21 -0000 1.208
25 +++ ChangeLog 9 Nov 2013 13:43:52 -0000 1.209
26 @@ -1,6 +1,14 @@
27 # ChangeLog for kde-base/dolphin
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/kde-base/dolphin/ChangeLog,v 1.208 2013/11/05 22:23:21 dilfridge Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/kde-base/dolphin/ChangeLog,v 1.209 2013/11/09 13:43:52 johu Exp $
31 +
32 +*dolphin-4.11.3-r1 (09 Nov 2013)
33 +
34 + 09 Nov 2013; Johannes Huber <johu@g.o> +dolphin-4.11.3-r1.ebuild,
35 + +files/dolphin-4.11.3-regression.patch, -dolphin-4.11.3.ebuild:
36 + Revision bump adds upstream patch announced on packagers ml. Patch fixes
37 + clicking the trash plasmoid or starting Dolphin from the command line with a
38 + URL that includes another kioslave will just open the home folder.
39
40 *dolphin-4.11.3 (05 Nov 2013)
41
42
43
44
45 1.1 kde-base/dolphin/dolphin-4.11.3-r1.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/dolphin/dolphin-4.11.3-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/dolphin/dolphin-4.11.3-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: dolphin-4.11.3-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2013 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/kde-base/dolphin/dolphin-4.11.3-r1.ebuild,v 1.1 2013/11/09 13:43:52 johu Exp $
55
56 EAPI=5
57
58 KDE_HANDBOOK="optional"
59 KMNAME="kde-baseapps"
60 inherit kde4-meta
61
62 DESCRIPTION="A KDE filemanager focusing on usability"
63 HOMEPAGE="http://dolphin.kde.org http://www.kde.org/applications/system/dolphin"
64 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
65 IUSE="debug semantic-desktop thumbnail"
66
67 DEPEND="
68 $(add_kdebase_dep kactivities)
69 $(add_kdebase_dep kdelibs 'semantic-desktop?')
70 $(add_kdebase_dep libkonq)
71 x11-libs/libXrender
72 semantic-desktop? (
73 >=dev-libs/shared-desktop-ontologies-0.11.0
74 dev-libs/soprano
75 $(add_kdebase_dep nepomuk-core)
76 $(add_kdebase_dep nepomuk-widgets)
77 )
78 "
79 RDEPEND="${DEPEND}
80 $(add_kdebase_dep kfind)
81 "
82 PDEPEND="
83 thumbnail? (
84 $(add_kdebase_dep thumbnailers)
85 || (
86 $(add_kdebase_dep ffmpegthumbs)
87 $(add_kdebase_dep mplayerthumbs)
88 )
89 )
90 "
91
92 RESTRICT="test"
93 # bug 393129
94
95 PATCHES=( "${FILESDIR}/${P}-regression.patch" )
96
97 src_configure() {
98 mycmakeargs=(
99 $(cmake-utils_use_with semantic-desktop NepomukCore)
100 $(cmake-utils_use_with semantic-desktop NepomukWidgets)
101 $(cmake-utils_use_with semantic-desktop Soprano)
102 )
103
104 kde4-meta_src_configure
105 }
106
107 pkg_postinst() {
108 kde4-base_pkg_postinst
109
110 if ! has_version media-gfx/icoutils ; then
111 elog "For .exe file preview support, install media-gfx/icoutils."
112 fi
113 }