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