Gentoo Archives: gentoo-commits

From: "Theo Chatzimichos (tampakrap)" <tampakrap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/plasma-workspace/files: plasma-workspace-4.6.0-optional_akonadi-server.patch
Date: Fri, 04 Feb 2011 13:28:45
Message-Id: 20110204132835.224C720057@flycatcher.gentoo.org
1 tampakrap 11/02/04 13:28:35
2
3 Added:
4 plasma-workspace-4.6.0-optional_akonadi-server.patch
5 Log:
6 Make semantic-desktop optional again for plasma-workspace, patch by Fabiano <fabianoengler at gmail dot com>, bug 350850
7
8 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.1 kde-base/plasma-workspace/files/plasma-workspace-4.6.0-optional_akonadi-server.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/plasma-workspace/files/plasma-workspace-4.6.0-optional_akonadi-server.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/kde-base/plasma-workspace/files/plasma-workspace-4.6.0-optional_akonadi-server.patch?rev=1.1&content-type=text/plain
15
16 Index: plasma-workspace-4.6.0-optional_akonadi-server.patch
17 ===================================================================
18 diff -r -u plasma-workspace-4.6.0-orig/plasma/generic/dataengines/CMakeLists.txt plasma-workspace-4.6.0/plasma/generic/dataengines/CMakeLists.txt
19 --- plasma-workspace-4.6.0-orig/plasma/generic/dataengines/CMakeLists.txt 2011-02-03 18:58:47.884000165 -0500
20 +++ plasma-workspace-4.6.0/plasma/generic/dataengines/CMakeLists.txt 2011-02-03 19:24:21.511000165 -0500
21 @@ -28,8 +28,10 @@
22 macro_log_feature(KDEPIMLIBS_FOUND "kdepimlibs" "KDE PIM libraries" "http://www.kde.org" FALSE "" "Needed for building several plasma dataengines")
23
24 if(KDEPIMLIBS_FOUND)
25 - add_subdirectory(akonadi)
26 - add_subdirectory(calendar)
27 + if(AKONADI_FOUND)
28 + add_subdirectory(akonadi)
29 + add_subdirectory(calendar)
30 + endif(AKONADI_FOUND)
31 add_subdirectory(rss)
32 endif(KDEPIMLIBS_FOUND)