blob: 6be11a741756c28dc3d1e13648d431137151e26d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/akonadi/akonadi-4.3.3.ebuild,v 1.6 2010/01/19 02:31:29 jer Exp $
EAPI="2"
if [[ ${PV} = *9999* ]]; then
KMNAME="kdepim"
eclass="kde4-meta"
else
KMNAME="kdepim-runtime"
eclass="kde4-base"
fi
inherit ${eclass}
DESCRIPTION="An extensible cross-desktop storage service for PIM data and meta data"
KEYWORDS="~alpha amd64 hppa ~ia64 ppc ppc64 ~sparc x86"
# add when libmapi becomes available with an ebuild
#exchange
IUSE="debug +semantic-desktop"
# add when libmapi becomes available with an ebuild
#exchange? ( net-libs/libmapi )
DEPEND="
dev-libs/boost
dev-libs/libxml2
dev-libs/libxslt
$(add_kdebase_dep kdelibs 'semantic-desktop?')
$(add_kdebase_dep kdepimlibs)
x11-misc/shared-mime-info
"
RDEPEND="${DEPEND}
>=app-office/akonadi-server-1.2.1
"
# @since 4.3 - blocks kdemaildir - no longer provided (it's in akonadi now)
add_blocker kdemaildir
add_blocker kdepim-kresources '<4.2.95'
[[ ${KMNAME} = "kdepim-runtime" ]] && S="${WORKDIR}/${KMNAME}-${PV}"
src_prepare() {
local pref="${S}"
[[ ${KMNAME} != "kdepim-runtime" ]] && pref="${S}/${PN}"
if ! use semantic-desktop; then
sed -i -e "s/add_subdirectory( nepomuktag )//"\
"${pref}"/resources/CMakeLists.txt\
|| die "Failed to disable nepomuktag"
fi
${eclass}_src_prepare
}
src_configure() {
# Set the dbus dirs, otherwise it searches in KDEDIR
mycmakeargs="${mycmakeargs}
-DAKONADI_DBUS_INTERFACES_INSTALL_DIR=/usr/share/dbus-1/interfaces
-DAKONADI_DBUS_SERVICES_INSTALL_DIR=/usr/share/dbus-1/services"
# replace with $(cmake-utils_use_with exchange OpenChange) when libmapi becomes available with an ebuild
mycmakeargs="${mycmakeargs}
-DWITH_LibXslt=ON
-DWITH_OpenChange=OFF
-DWITH_GNOKII=OFF
-DWITH_GLIB2=OFF
-DWITH_OpenSync=OFF
$(cmake-utils_use_with semantic-desktop Nepomuk)
$(cmake-utils_use_with semantic-desktop Soprano)"
${eclass}_src_configure
}
src_test() {
# disable broken tests
sed -i -e '/kcalserializertest/ s/^/#DO_NOT_RUN_TEST /' \
"${S}"/plugins/tests/CMakeLists.txt || \
die "sed to disable kcalserializertest failed."
sed -i -e '/kresmigrationtest/ s/^/#DO_NOT_RUN_TEST /' \
"${S}"/migration/kres/tests/CMakeLists.txt || \
die "sed to disable kresmigrationtest failed."
${eclass}_src_test
}
src_install() {
${eclass}_src_install
# colliding files with nepomuk
rm -rf "${D}"/${KDEDIR}/share/apps/nepomuk/ontologies/n{m,c}o.{desktop,trig}
}
|