Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/
Date: Fri, 03 Jul 2015 17:46:01
Message-Id: 1435945543.a0b21671451b0d01ae10743c9576c80dfc9563bb.kensington@gentoo
1 commit: a0b21671451b0d01ae10743c9576c80dfc9563bb
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 3 17:45:43 2015 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 3 17:45:43 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=a0b21671
7
8 [kde-base/kdepimlibs] Version bump.
9
10 Package-Manager: portage-2.2.20
11
12 kde-base/kdepimlibs/kdepimlibs-4.14.10.ebuild | 57 +++++++++++++++++++++++++++
13 1 file changed, 57 insertions(+)
14
15 diff --git a/kde-base/kdepimlibs/kdepimlibs-4.14.10.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.14.10.ebuild
16 new file mode 100644
17 index 0000000..24039e9
18 --- /dev/null
19 +++ b/kde-base/kdepimlibs/kdepimlibs-4.14.10.ebuild
20 @@ -0,0 +1,57 @@
21 +# Copyright 1999-2015 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Header: $
24 +
25 +EAPI=5
26 +
27 +KDE_HANDBOOK="optional"
28 +CPPUNIT_REQUIRED="optional"
29 +EGIT_BRANCH="KDE/4.14"
30 +inherit kde4-base
31 +
32 +DESCRIPTION="Common library for KDE PIM apps"
33 +KEYWORDS=" ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
34 +LICENSE="LGPL-2.1"
35 +IUSE="debug ldap prison"
36 +
37 +# some akonadi tests timeout, that probaly needs more work as its ~700 tests
38 +RESTRICT="test"
39 +
40 +DEPEND="
41 + !kde-misc/akonadi-social-utils
42 + >=app-crypt/gpgme-1.1.6
43 + >=app-office/akonadi-server-1.12.90[qt4]
44 + >=dev-libs/boost-1.35.0-r5:=
45 + dev-libs/libgpg-error
46 + >=dev-libs/libical-0.48-r2:=
47 + dev-libs/cyrus-sasl
48 + >=dev-libs/qjson-0.8.1
49 + media-libs/phonon[qt4]
50 + x11-misc/shared-mime-info
51 + prison? ( media-libs/prison:4 )
52 + ldap? ( net-nds/openldap )
53 +"
54 +# boost is not linked to, but headers which include it are installed
55 +# bug #418071
56 +RDEPEND="${DEPEND}
57 + !=kde-base/kdepim-runtime-4.10*
58 + !=kde-base/kdepim-runtime-4.11*
59 + !<kde-base/kdepim-runtime-4.4.11.1-r2
60 +"
61 +
62 +PATCHES=( "${FILESDIR}/${PN}-4.9.1-boostincludes.patch" )
63 +
64 +src_configure() {
65 + local mycmakeargs=(
66 + $(cmake-utils_use_build handbook doc)
67 + $(cmake-utils_use_find_package ldap)
68 + $(cmake-utils_use_find_package prison)
69 + )
70 +
71 + kde4-base_src_configure
72 +}
73 +
74 +src_install() {
75 + kde4-base_src_install
76 + rm "${ED}"/usr/share/apps/cmake/modules/FindQtOAuth.cmake #Collides with net-im/choqok
77 +}