Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/kdepim-runtime/
Date: Fri, 02 Jun 2017 00:38:38
Message-Id: 1496363868.d924c43135fbd3e4fdccd5c6a3f79dbaf133be09.asturm@gentoo
1 commit: d924c43135fbd3e4fdccd5c6a3f79dbaf133be09
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 1 22:39:52 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 2 00:37:48 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d924c431
7
8 kde-apps/kdepim-runtime: Set QT_MINIMAL="4.8.7", warn on <GCC-5
9
10 Gentoo-bug: 618922
11
12 Package-Manager: Portage-2.3.5, Repoman-2.3.1
13
14 .../kdepim-runtime-4.14.11_pre20160211-r1.ebuild | 50 ++++++++++++++++++++++
15 1 file changed, 50 insertions(+)
16
17 diff --git a/kde-apps/kdepim-runtime/kdepim-runtime-4.14.11_pre20160211-r1.ebuild b/kde-apps/kdepim-runtime/kdepim-runtime-4.14.11_pre20160211-r1.ebuild
18 new file mode 100644
19 index 00000000000..f5bc6a77e71
20 --- /dev/null
21 +++ b/kde-apps/kdepim-runtime/kdepim-runtime-4.14.11_pre20160211-r1.ebuild
22 @@ -0,0 +1,50 @@
23 +# Copyright 1999-2017 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=6
27 +
28 +KMNAME="kdepim-runtime"
29 +QT_MINIMAL="4.8.7"
30 +EGIT_BRANCH="KDE/4.14"
31 +inherit kde4-base
32 +
33 +DESCRIPTION="KDE PIM runtime plugin collection"
34 +COMMIT_ID="bb194cc299839cb00b808c9c5740169815ba9e39"
35 +SRC_URI="https://quickgit.kde.org/?p=kdepim-runtime.git&a=snapshot&h=${COMMIT_ID}&fmt=tgz -> ${KMNAME}-${PV}.tar.gz"
36 +S=${WORKDIR}/${PN}
37 +
38 +KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
39 +IUSE="debug google"
40 +
41 +RESTRICT="test"
42 +# Would need test programs _testrunner and akonaditest from kdepimlibs, see bug 313233
43 +
44 +DEPEND="
45 + $(add_kdeapps_dep kdepimlibs 'akonadi(+)' ${PV})
46 + dev-libs/boost:=
47 + dev-libs/libxml2:2
48 + dev-libs/libxslt
49 + kde-apps/akonadi:4
50 + x11-misc/shared-mime-info
51 + google? ( $(add_kdeapps_dep libkgapi '' 2.0) )
52 +"
53 +RDEPEND="${DEPEND}
54 + kde-frameworks/oxygen-icons:5
55 + !kde-misc/akonadi-google
56 +"
57 +
58 +pkg_setup() {
59 + if [[ $(gcc-major-version) -lt 5 ]] ; then
60 + ewarn "A GCC version older than 5 was detected. There may be trouble. See also Gentoo bug #595618"
61 + fi
62 +
63 + kde4-base_pkg_setup
64 +}
65 +
66 +src_configure() {
67 + local mycmakeargs=(
68 + $(cmake-utils_use_find_package google LibKGAPI2)
69 + )
70 +
71 + kde4-base_src_configure
72 +}