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.0.ebuild
Date: Tue, 09 Feb 2010 00:16:25
Message-Id: E1Nedm8-00011I-FZ@stork.gentoo.org
1 alexxy 10/02/09 00:16:20
2
3 Modified: ChangeLog
4 Added: kdepimlibs-4.4.0.ebuild
5 Log:
6 [kde-base/kdepimlibs] Version bump to KDE SC 4.4.0
7 (Portage version: 2.2_rc62/cvs/Linux x86_64, RepoMan options: --force)
8
9 Revision Changes Path
10 1.62 kde-base/kdepimlibs/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdepimlibs/ChangeLog?rev=1.62&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdepimlibs/ChangeLog?rev=1.62&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdepimlibs/ChangeLog?r1=1.61&r2=1.62
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/kde-base/kdepimlibs/ChangeLog,v
19 retrieving revision 1.61
20 retrieving revision 1.62
21 diff -u -r1.61 -r1.62
22 --- ChangeLog 25 Jan 2010 15:27:25 -0000 1.61
23 +++ ChangeLog 9 Feb 2010 00:16:18 -0000 1.62
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.61 2010/01/25 15:27:25 scarabeus Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepimlibs/ChangeLog,v 1.62 2010/02/09 00:16:18 alexxy Exp $
29 +
30 +*kdepimlibs-4.4.0 (08 Feb 2010)
31 +
32 + 08 Feb 2010; Alexey Shvetsov <alexxy@g.o> +kdepimlibs-4.4.0.ebuild:
33 + Version bump to KDE SC 4.4.0
34
35 *kdepimlibs-4.3.5 (25 Jan 2010)
36
37
38
39
40 1.1 kde-base/kdepimlibs/kdepimlibs-4.4.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdepimlibs/kdepimlibs-4.4.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kdepimlibs/kdepimlibs-4.4.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: kdepimlibs-4.4.0.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.0.ebuild,v 1.1 2010/02/09 00:16:18 alexxy Exp $
50
51 EAPI="2"
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 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
60 LICENSE="LGPL-2.1"
61 IUSE="+akonadi debug +handbook ldap"
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 akonadi? ( >=app-office/akonadi-server-1.3.0 )
73 ldap? ( net-nds/openldap )
74 "
75 RDEPEND="${DEPEND}"
76
77 # libakonadi-kcal moved here from akonadi in 4.3.86
78 add_blocker akonadi '<4.3.86'
79 # @since 4.3 - libkholidays is in kdepimlibs now
80 add_blocker libkholidays
81 # @since 4.4 - kontactinterfaces is in kdepimlibs now
82 add_blocker kontactinterfaces
83
84 src_prepare() {
85 kde4-base_src_prepare
86
87 if ! use akonadi; then
88 sed -e '/find_package(Akonadi/s/^/# DISABLED /' \
89 -e '/macro_log_feature(Akonadi_FOUND/s/TRUE/FALSE/' \
90 -e '/add_subdirectory(akonadi)/s/^/# DISABLED /' \
91 -e '/add_subdirectory(mailtransport)/s/^/# DISABLED /' \
92 -i CMakeLists.txt || die "failed to disable akonadi"
93 fi
94 }
95
96 src_configure() {
97 mycmakeargs=(
98 $(cmake-utils_use_build handbook doc)
99 $(cmake-utils_use_with ldap)
100 )
101
102 kde4-base_src_configure
103 }