source: gnome/platform/evolution-data-server.xml@ c3f3e86a

11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since c3f3e86a was c3f3e86a, checked in by Xi Ruoyao <xry111@…>, 15 months ago

evolution-data-server: Drop gcr dependency

It has been removed in 3.45.3 (see NEWS file).

e-d-s still indirectly depends on gcr via g-o-a (in "recommended" level)
though.

  • Property mode set to 100644
File size: 14.3 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY evolution-data-server-download-http
8 "&gnome-download-http;/evolution-data-server/&gnome-minor-46;/evolution-data-server-&evolution-data-server-version;.tar.xz">
9 <!ENTITY evolution-data-server-download-ftp
10 "&gnome-download-ftp;/evolution-data-server/&gnome-minor-46;/evolution-data-server-&evolution-data-server-version;.tar.xz">
11 <!ENTITY evolution-data-server-md5sum "af3f928e0e6c5b5fa037a629bf085f4d">
12 <!ENTITY evolution-data-server-size "4.7 MB">
13 <!ENTITY evolution-data-server-buildsize "241 MB (with tests)">
14 <!ENTITY evolution-data-server-time "0.7 SBU (using parallelism=4, add 1.4 SBU for tests)">
15]>
16
17<sect1 id="evolution-data-server"
18xreflabel="evolution-data-server-&evolution-data-server-version;">
19 <?dbhtml filename="evolution-data-server.html"?>
20
21
22 <title>evolution-data-server-&evolution-data-server-version;</title>
23
24 <indexterm zone="evolution-data-server">
25 <primary sortas="a-evolution-data-server">evolution-data-server</primary>
26 </indexterm>
27
28 <sect2 role="package">
29 <title>Introduction to Evolution Data Server</title>
30
31 <para>
32 The <application>Evolution Data Server</application> package provides
33 a unified backend for programs that work with contacts, tasks, and calendar
34 information. It was originally developed for
35 <application>Evolution</application> (hence the name), but is now used by
36 other packages as well.
37 </para>
38
39 &lfs112_checked;
40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>
45 Download (HTTP): <ulink url="&evolution-data-server-download-http;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download (FTP): <ulink url="&evolution-data-server-download-ftp;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download MD5 sum: &evolution-data-server-md5sum;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download size: &evolution-data-server-size;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &evolution-data-server-buildsize;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated build time: &evolution-data-server-time;
71 </para>
72 </listitem>
73 </itemizedlist>
74
75 <bridgehead renderas="sect3">Evolution Data Server Dependencies</bridgehead>
76
77 <bridgehead renderas="sect4">Required</bridgehead>
78 <para role="required">
79 <xref linkend="libical"/>,
80 <xref linkend="libsecret"/>,
81 <xref linkend="nss"/>, and
82 <xref linkend="sqlite"/>
83 </para>
84
85 <bridgehead renderas="sect4">Recommended</bridgehead>
86 <para role="recommended">
87 <xref linkend="gnome-online-accounts"/>,
88 <xref linkend="gobject-introspection"/>,
89 <xref linkend="gtk3"/>,
90 <xref linkend="icu"/>,
91 <xref linkend="libcanberra"/>,
92 <xref linkend="libgweather"/>,
93 <xref linkend="vala"/>, and
94 <xref linkend="webkitgtk"/>
95 </para>
96
97 <bridgehead renderas="sect4"
98 revision="sysv">Recommended (Runtime)</bridgehead>
99 <para role="recommended" revision="sysv">
100 <xref linkend="blocaled" role="runtime"/>
101 </para>
102
103 <bridgehead renderas="sect4">Optional</bridgehead>
104 <para role="optional">
105 <xref linkend="db"/>,
106 <xref linkend="gtk-doc"/>,
107 <xref linkend="mitkrb"/>,
108 a <xref linkend="server-mail"/> (that provides a <command>sendmail</command> command),
109 <xref linkend="openldap"/>, and
110 <ulink url="https://github.com/googlei18n/libphonenumber/">libphonenumber</ulink>
111 </para>
112
113 <para condition="html" role="usernotes">User Notes:
114 <ulink url="&blfs-wiki;/evolution-data-server"/>
115 </para>
116 </sect2>
117
118 <sect2 role="installation">
119 <title>Installation of Evolution Data Server</title>
120
121 <para>
122 Install <application>Evolution Data Server</application> by running
123 the following commands:
124 </para>
125
126<screen revision="sysv"><userinput>mkdir build &amp;&amp;
127cd build &amp;&amp;
128
129cmake -DCMAKE_INSTALL_PREFIX=/usr \
130 -DSYSCONF_INSTALL_DIR=/etc \
131 -DENABLE_VALA_BINDINGS=ON \
132 -DENABLE_INSTALLED_TESTS=ON \
133 -DWITH_OPENLDAP=OFF \
134 -DWITH_KRB5=OFF \
135 -DENABLE_INTROSPECTION=ON \
136 -DENABLE_GTK_DOC=OFF \
137 -DWITH_LIBDB=OFF \
138 -DWITH_SYSTEMDUSERUNITDIR=no \
139 -DENABLE_OAUTH2_WEBKITGTK4=OFF \
140 .. &amp;&amp;
141make</userinput></screen>
142
143<screen revision="systemd"><userinput>mkdir build &amp;&amp;
144cd build &amp;&amp;
145
146cmake -DCMAKE_INSTALL_PREFIX=/usr \
147 -DSYSCONF_INSTALL_DIR=/etc \
148 -DENABLE_VALA_BINDINGS=ON \
149 -DENABLE_INSTALLED_TESTS=ON \
150 -DWITH_OPENLDAP=OFF \
151 -DWITH_KRB5=OFF \
152 -DENABLE_INTROSPECTION=ON \
153 -DENABLE_GTK_DOC=OFF \
154 -DWITH_LIBDB=OFF \
155 -DENABLE_OAUTH2_WEBKITGTK4=OFF \
156 .. &amp;&amp;
157make</userinput></screen>
158
159 <para>
160 Now, as the <systemitem class="username">root</systemitem> user:
161 </para>
162
163<screen role="root"><userinput>make install</userinput></screen>
164
165 <para>
166 To test the results, issue: <command>make test</command>.
167 </para>
168
169 <!-- The tests need to be run after the package is installed due to
170 compatibility issues that show up when upgrading from previous versions
171 of e-d-s. This is due to soup2/soup3 mixing. -->
172
173 </sect2>
174
175 <sect2 role="commands">
176 <title>Command Explanations</title>
177
178<!--
179 <para>
180 <parameter>-DENABLE_GOOGLE=ON</parameter>: This switch enables
181 access to google services via <xref linkend="libgdata"/> and also
182 enables the Google Authentication option.
183 </para>
184-->
185
186 <para>
187 <parameter>-DENABLE_VALA_BINDINGS=ON</parameter>: This switch
188 enables building the Vala bindings. Remove if you don't
189 have <xref linkend="vala"/> installed.
190 </para>
191
192 <para>
193 <parameter>-DENABLE_GTK_DOC=OFF</parameter>: This switch
194 disables building the API documentation. It is broken for
195 this package due to the use of a long deprecated gtk-doc program
196 that is no longer available.
197 </para>
198
199 <para>
200 <parameter>-DWITH_LIBDB=OFF</parameter>: This switch allows building
201 this package without <xref linkend="db"/>. This package only uses
202 <xref linkend="db"/> to import data from very outdated releases.
203 <xref linkend="sqlite"/> is used for normal operation.
204 </para>
205
206<!--
207 <para>
208 <parameter>-DWITH_GWEATHER4=ON</parameter>: This switch allows building
209 this package with <xref linkend="libgweather"/>.
210 </para>
211-->
212
213 <para>
214 <parameter>-DENABLE_OAUTH2_WEBKITGTK4=OFF</parameter>: This switch works
215 around a problem where the gtk-4 version of WebKit would be needed to show
216 OAuth2 login prompts.
217 </para>
218
219 <para revision="sysv">
220 <parameter>-DWITH_SYSTEMDUSERUNITDIR=no</parameter>: This switch
221 disables installing the systemd units, which are not used for a Sysv
222 build.
223 </para>
224
225 <note>
226 <para>
227 To enable many of the optional dependencies, review the information
228 from <command>cmake -L CMakeLists.txt</command> for the necessary
229 parameters you must pass to the <command>cmake</command> command.
230 </para>
231 </note>
232
233 </sect2>
234
235 <sect2 role="content">
236 <title>Contents</title>
237
238 <segmentedlist>
239 <segtitle>Installed Programs</segtitle>
240 <segtitle>Installed Libraries</segtitle>
241 <segtitle>Installed Directories</segtitle>
242
243 <seglistitem>
244 <seg>
245 None
246 </seg>
247 <seg>
248 libcamel-1.2.so, libebackend-1.2.so, libebook-1.2.so,
249 libebook-contacts-1.2.so, libecal-2.0.so, libedata-book-1.2.so,
250 libedata-cal-2.0.so, libedataserver-1.2.so,
251 libedataserverui-1.2.so, libedataserverui4-1.0.so,
252 and libetestserverutils.so
253 </seg>
254 <seg>
255 /usr/include/evolution-data-server,
256 /usr/lib{,exec}/evolution-data-server,
257 /usr/share/evolution-data-server,
258 /usr/share/installed-tests/evolution-data-server, and
259 <!-- We explicitly disable gtk-doc generation, so comment these out
260 /usr/share/gtk-doc/html/{camel,libebackend,libebook},
261 /usr/share/gtk-doc/html/{libecal,libedata-book,libedata-cal},
262 /usr/share/gtk-doc/html/{libedataserver,libedataserverui} and
263 -->
264 /usr/share/pixmaps/evolution-data-server
265 </seg>
266 </seglistitem>
267 </segmentedlist>
268
269 <variablelist>
270 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
271 <?dbfo list-presentation="list"?>
272 <?dbhtml list-presentation="table"?>
273
274 <varlistentry id="libcamel-1">
275 <term><filename class="libraryfile">libcamel-1.2.so</filename></term>
276 <listitem>
277 <para>
278 is the <application>Evolution</application> MIME message
279 handling library
280 </para>
281 <indexterm zone="evolution-data-server libcamel-1">
282 <primary sortas="c-libcamel-1">libcamel-1.2.so</primary>
283 </indexterm>
284 </listitem>
285 </varlistentry>
286
287 <varlistentry id="libebackend-1">
288 <term><filename class="libraryfile">libebackend-1.2.so</filename></term>
289 <listitem>
290 <para>
291 is the utility library for
292 <application>Evolution Data Server</application> Backends
293 </para>
294 <indexterm zone="evolution-data-server libebackend-1">
295 <primary sortas="c-libebackend-1">libebackend-1.2.so</primary>
296 </indexterm>
297 </listitem>
298 </varlistentry>
299
300 <varlistentry id="libebook-1">
301 <term><filename class="libraryfile">libebook-1.2.so</filename></term>
302 <listitem>
303 <para>
304 is the client library for <application>Evolution</application>
305 address books
306 </para>
307 <indexterm zone="evolution-data-server libebook-1">
308 <primary sortas="c-libebook-1">libebook-1.2.so</primary>
309 </indexterm>
310 </listitem>
311 </varlistentry>
312
313 <varlistentry id="libebook-contacts-1">
314 <term><filename class="libraryfile">libebook-contacts-1.2.so</filename></term>
315 <listitem>
316 <para>
317 is the client library for <application>Evolution</application>
318 contacts
319 </para>
320 <indexterm zone="evolution-data-server libebook-contacts-1">
321 <primary sortas="c-libebook-contacts-1">libebook-contacts-1.2.so</primary>
322 </indexterm>
323 </listitem>
324 </varlistentry>
325
326 <varlistentry id="libecal-1">
327 <term><filename class="libraryfile">libecal-1.2.so</filename></term>
328 <listitem>
329 <para>
330 is the client library for <application>Evolution</application>
331 calendars
332 </para>
333 <indexterm zone="evolution-data-server libecal-1">
334 <primary sortas="c-libecal-1">libecal-1.2.so</primary>
335 </indexterm>
336 </listitem>
337 </varlistentry>
338
339 <varlistentry id="libedata-book-1">
340 <term><filename class="libraryfile">libedata-book-1.2.so</filename></term>
341 <listitem>
342 <para>
343 is the backend library for <application>Evolution</application>
344 address books
345 </para>
346 <indexterm zone="evolution-data-server libedata-book-1">
347 <primary sortas="c-libedata-book-1">libedata-book-1.2.so</primary>
348 </indexterm>
349 </listitem>
350 </varlistentry>
351
352 <varlistentry id="libedata-cal-1">
353 <term><filename class="libraryfile">libedata-cal-1.2.so</filename></term>
354 <listitem>
355 <para>
356 is the backend library for <application>Evolution</application>
357 calendars
358 </para>
359 <indexterm zone="evolution-data-server libedata-cal-1">
360 <primary sortas="c-libedata-cal-1">libedata-cal-1.2.so</primary>
361 </indexterm>
362 </listitem>
363 </varlistentry>
364
365 <varlistentry id="libedataserver-1">
366 <term><filename class="libraryfile">libedataserver-1.2.so</filename></term>
367 <listitem>
368 <para>
369 is the utility library for
370 <application>Evolution Data Server</application>
371 </para>
372 <indexterm zone="evolution-data-server libedataserver-1">
373 <primary sortas="c-libedataserver-1">libedataserver-1.2.so</primary>
374 </indexterm>
375 </listitem>
376 </varlistentry>
377
378 <varlistentry id="libedataserverui-3">
379 <term><filename class="libraryfile">libedataserverui-3.0.so</filename></term>
380 <listitem>
381 <para>
382 is the GUI utility library for
383 <application>Evolution Data Server</application>
384 </para>
385 <indexterm zone="evolution-data-server libedataserverui-3">
386 <primary sortas="c-libedataserverui-3">libedataserverui-3.0.so</primary>
387 </indexterm>
388 </listitem>
389 </varlistentry>
390
391 <varlistentry id="libedataserverui4-1">
392 <term><filename class="libraryfile">libedataserverui4-1.0.so</filename></term>
393 <listitem>
394 <para>
395 is the GTK-4 based GUI utility library for
396 <application>Evolution Data Server</application>
397 </para>
398 <indexterm zone="evolution-data-server libedataserverui4-1">
399 <primary sortas="c-libedataserverui4-1">libedataserverui4-1.0.so</primary>
400 </indexterm>
401 </listitem>
402 </varlistentry>
403
404 <varlistentry id="libetestserverutils-1">
405 <term><filename class="libraryfile">libetestserverutils.so</filename></term>
406 <listitem>
407 <para>
408 is the server test utility library for
409 <application>Evolution Data Server</application>
410 </para>
411 <indexterm zone="evolution-data-server libetestserverutils-1">
412 <primary sortas="c-libetestserverutils-1">libetestserverutils.so</primary>
413 </indexterm>
414 </listitem>
415 </varlistentry>
416
417
418 </variablelist>
419
420 </sect2>
421
422</sect1>
Note: See TracBrowser for help on using the repository browser.