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: Wed, 04 Feb 2015 16:14:06
Message-Id: 1423066417.30bfcf8e9c7c0ab6502d5c588c79f19501eba832.kensington@gentoo
1 commit: 30bfcf8e9c7c0ab6502d5c588c79f19501eba832
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 4 16:13:37 2015 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 4 16:13:37 2015 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=30bfcf8e
7
8 [kde-base/kdepimlibs] Version bump.
9
10 Package-Manager: portage-2.2.14
11
12 ---
13 kde-base/kdepimlibs/kdepimlibs-4.14.5.ebuild | 56 ++++++++++++++++++++++++++++
14 1 file changed, 56 insertions(+)
15
16 diff --git a/kde-base/kdepimlibs/kdepimlibs-4.14.5.ebuild b/kde-base/kdepimlibs/kdepimlibs-4.14.5.ebuild
17 new file mode 100644
18 index 0000000..c13ca76
19 --- /dev/null
20 +++ b/kde-base/kdepimlibs/kdepimlibs-4.14.5.ebuild
21 @@ -0,0 +1,56 @@
22 +# Copyright 1999-2015 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +# $Header: $
25 +
26 +EAPI=5
27 +
28 +KDE_HANDBOOK="optional"
29 +CPPUNIT_REQUIRED="optional"
30 +inherit kde4-base
31 +
32 +DESCRIPTION="Common library for KDE PIM apps"
33 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~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 +}