Gentoo Archives: gentoo-commits

From: "Alexey Shvetsov (alexxy)" <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/kdepimlibs: ChangeLog kdepimlibs-4.4.5.ebuild
Date: Wed, 30 Jun 2010 15:37:41
Message-Id: 20100630153638.EFF0B2CF5A@corvid.gentoo.org
1 alexxy 10/06/30 15:36:38
2
3 Modified: ChangeLog
4 Added: kdepimlibs-4.4.5.ebuild
5 Log:
6 [kde-base] Bump KDE SC 4.4.5 =)
7 (Portage version: 2.2_rc67_p182/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.77 kde-base/kdepimlibs/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepimlibs/ChangeLog?rev=1.77&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepimlibs/ChangeLog?rev=1.77&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepimlibs/ChangeLog?r1=1.76&r2=1.77
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/kde-base/kdepimlibs/ChangeLog,v
19 retrieving revision 1.76
20 retrieving revision 1.77
21 diff -u -r1.76 -r1.77
22 --- ChangeLog 27 Jun 2010 18:25:35 -0000 1.76
23 +++ ChangeLog 30 Jun 2010 15:36:38 -0000 1.77
24 @@ -1,6 +1,11 @@
25 # ChangeLog for kde-base/kdepimlibs
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepimlibs/ChangeLog,v 1.76 2010/06/27 18:25:35 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepimlibs/ChangeLog,v 1.77 2010/06/30 15:36:38 alexxy Exp $
29 +
30 +*kdepimlibs-4.4.5 (30 Jun 2010)
31 +
32 + 30 Jun 2010; Alexey Shvetsov <alexxy@g.o> +kdepimlibs-4.4.5.ebuild:
33 + Version bump
34
35 27 Jun 2010; Christian Faulhammer <fauli@g.o>
36 kdepimlibs-4.4.4.ebuild:
37
38
39
40 1.1 kde-base/kdepimlibs/kdepimlibs-4.4.5.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepimlibs/kdepimlibs-4.4.5.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/kdepimlibs/kdepimlibs-4.4.5.ebuild?rev=1.1&content-type=text/plain
44
45 Index: kdepimlibs-4.4.5.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/kde-base/kdepimlibs/kdepimlibs-4.4.5.ebuild,v 1.1 2010/06/30 15:36:38 alexxy Exp $
50
51 EAPI="3"
52
53 CPPUNIT_REQUIRED="optional"
54 inherit kde4-base
55
56 DESCRIPTION="Common library for KDE PIM apps."
57 HOMEPAGE="http://www.kde.org/"
58
59 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
60 LICENSE="LGPL-2.1"
61 IUSE="debug +handbook ldap +semantic-desktop"
62
63 # some akonadi tests timeout, that probaly needs more work as its ~700 tests
64 RESTRICT="test"
65
66 DEPEND="
67 >=app-crypt/gpgme-1.1.6
68 >=dev-libs/boost-1.35.0-r5
69 dev-libs/libgpg-error
70 >=dev-libs/libical-0.43
71 dev-libs/cyrus-sasl
72 semantic-desktop? (
73 >=app-office/akonadi-server-1.3.1
74 media-sound/phonon
75 x11-misc/shared-mime-info
76 )
77 ldap? ( net-nds/openldap )
78 "
79 RDEPEND="${DEPEND}"
80
81 # libakonadi-kcal moved here from akonadi in 4.3.86
82 add_blocker akonadi '<4.3.86'
83 # @since 4.3 - libkholidays is in kdepimlibs now
84 add_blocker libkholidays
85 # @since 4.4 - kontactinterfaces is in kdepimlibs now
86 add_blocker kontactinterfaces
87
88 src_prepare() {
89 kde4-base_src_prepare
90
91 # Disable hardcoded checks
92 sed -r -e '/find_package\((Akonadi)/{/macro_optional_/!s/find/macro_optional_&/}' \
93 -e '/macro_log_feature\((Akonadi)_FOUND/s/ TRUE / FALSE /' \
94 -e '/add_subdirectory\((akonadi|mailtransport)/{/macro_optional_/!s/add/macro_optional_&/}' \
95 -i CMakeLists.txt || die
96 if ! use semantic-desktop; then
97 # More reliable than -DBUILD_akonadi=OFF
98 rm -r akonadi mailtransport || die
99 fi
100 }
101
102 src_configure() {
103 mycmakeargs=(
104 $(cmake-utils_use_build handbook doc)
105 $(cmake-utils_use_with ldap)
106 $(cmake-utils_use_with semantic-desktop Akonadi)
107 )
108
109 kde4-base_src_configure
110 }