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

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 e38b1fd was 9ff820c, checked in by Pierre Labastie <pierre.labastie@…>, 17 months ago

Update to evolution-data-server-3.46.3

  • 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="gcr"/>,
80 <xref linkend="libical"/>,
81 <xref linkend="libsecret"/>,
82 <xref linkend="nss"/>, and
83 <xref linkend="sqlite"/>
84 </para>
85
86 <bridgehead renderas="sect4">Recommended</bridgehead>
87 <para role="recommended">
88 <xref linkend="gnome-online-accounts"/>,
89 <xref linkend="gobject-introspection"/>,
90 <xref linkend="gtk3"/>,
91 <xref linkend="icu"/>,
92 <xref linkend="libcanberra"/>,
93 <xref linkend="libgweather"/>,
94 <xref linkend="vala"/>, and
95 <xref linkend="webkitgtk"/>
96 </para>
97
98 <bridgehead renderas="sect4"
99 revision="sysv">Recommended (Runtime)</bridgehead>
100 <para role="recommended" revision="sysv">
101 <xref linkend="blocaled" role="runtime"/>
102 </para>
103
104 <bridgehead renderas="sect4">Optional</bridgehead>
105 <para role="optional">
106 <xref linkend="db"/>,
107 <xref linkend="gtk-doc"/>,
108 <xref linkend="mitkrb"/>,
109 a <xref linkend="server-mail"/> (that provides a <command>sendmail</command> command),
110 <xref linkend="openldap"/>, and
111 <ulink url="https://github.com/googlei18n/libphonenumber/">libphonenumber</ulink>
112 </para>
113
114 <para condition="html" role="usernotes">User Notes:
115 <ulink url="&blfs-wiki;/evolution-data-server"/>
116 </para>
117 </sect2>
118
119 <sect2 role="installation">
120 <title>Installation of Evolution Data Server</title>
121
122 <para>
123 Install <application>Evolution Data Server</application> by running
124 the following commands:
125 </para>
126
127<screen revision="sysv"><userinput>mkdir build &amp;&amp;
128cd build &amp;&amp;
129
130cmake -DCMAKE_INSTALL_PREFIX=/usr \
131 -DSYSCONF_INSTALL_DIR=/etc \
132 -DENABLE_VALA_BINDINGS=ON \
133 -DENABLE_INSTALLED_TESTS=ON \
134 -DWITH_OPENLDAP=OFF \
135 -DWITH_KRB5=OFF \
136 -DENABLE_INTROSPECTION=ON \
137 -DENABLE_GTK_DOC=OFF \
138 -DWITH_LIBDB=OFF \
139 -DWITH_SYSTEMDUSERUNITDIR=no \
140 -DENABLE_OAUTH2_WEBKITGTK4=OFF \
141 .. &amp;&amp;
142make</userinput></screen>
143
144<screen revision="systemd"><userinput>mkdir build &amp;&amp;
145cd build &amp;&amp;
146
147cmake -DCMAKE_INSTALL_PREFIX=/usr \
148 -DSYSCONF_INSTALL_DIR=/etc \
149 -DENABLE_VALA_BINDINGS=ON \
150 -DENABLE_INSTALLED_TESTS=ON \
151 -DWITH_OPENLDAP=OFF \
152 -DWITH_KRB5=OFF \
153 -DENABLE_INTROSPECTION=ON \
154 -DENABLE_GTK_DOC=OFF \
155 -DWITH_LIBDB=OFF \
156 -DENABLE_OAUTH2_WEBKITGTK4=OFF \
157 .. &amp;&amp;
158make</userinput></screen>
159
160 <para>
161 Now, as the <systemitem class="username">root</systemitem> user:
162 </para>
163
164<screen role="root"><userinput>make install</userinput></screen>
165
166 <para>
167 To test the results, issue: <command>make test</command>.
168 </para>
169
170 <!-- The tests need to be run after the package is installed due to
171 compatibility issues that show up when upgrading from previous versions
172 of e-d-s. This is due to soup2/soup3 mixing. -->
173
174 </sect2>
175
176 <sect2 role="commands">
177 <title>Command Explanations</title>
178
179<!--
180 <para>
181 <parameter>-DENABLE_GOOGLE=ON</parameter>: This switch enables
182 access to google services via <xref linkend="libgdata"/> and also
183 enables the Google Authentication option.
184 </para>
185-->
186
187 <para>
188 <parameter>-DENABLE_VALA_BINDINGS=ON</parameter>: This switch
189 enables building the Vala bindings. Remove if you don't
190 have <xref linkend="vala"/> installed.
191 </para>
192
193 <para>
194 <parameter>-DENABLE_GTK_DOC=OFF</parameter>: This switch
195 disables building the API documentation. It is broken for
196 this package due to the use of a long deprecated gtk-doc program
197 that is no longer available.
198 </para>
199
200 <para>
201 <parameter>-DWITH_LIBDB=OFF</parameter>: This switch allows building
202 this package without <xref linkend="db"/>. This package only uses
203 <xref linkend="db"/> to import data from very outdated releases.
204 <xref linkend="sqlite"/> is used for normal operation.
205 </para>
206
207<!--
208 <para>
209 <parameter>-DWITH_GWEATHER4=ON</parameter>: This switch allows building
210 this package with <xref linkend="libgweather"/>.
211 </para>
212-->
213
214 <para>
215 <parameter>-DENABLE_OAUTH2_WEBKITGTK4=OFF</parameter>: This switch works
216 around a problem where the gtk-4 version of WebKit would be needed to show
217 OAuth2 login prompts.
218 </para>
219
220 <para revision="sysv">
221 <parameter>-DWITH_SYSTEMDUSERUNITDIR=no</parameter>: This switch
222 disables installing the systemd units, which are not used for a Sysv
223 build.
224 </para>
225
226 <note>
227 <para>
228 To enable many of the optional dependencies, review the information
229 from <command>cmake -L CMakeLists.txt</command> for the necessary
230 parameters you must pass to the <command>cmake</command> command.
231 </para>
232 </note>
233
234 </sect2>
235
236 <sect2 role="content">
237 <title>Contents</title>
238
239 <segmentedlist>
240 <segtitle>Installed Programs</segtitle>
241 <segtitle>Installed Libraries</segtitle>
242 <segtitle>Installed Directories</segtitle>
243
244 <seglistitem>
245 <seg>
246 None
247 </seg>
248 <seg>
249 libcamel-1.2.so, libebackend-1.2.so, libebook-1.2.so,
250 libebook-contacts-1.2.so, libecal-2.0.so, libedata-book-1.2.so,
251 libedata-cal-2.0.so, libedataserver-1.2.so,
252 libedataserverui-1.2.so, libedataserverui4-1.0.so,
253 and libetestserverutils.so
254 </seg>
255 <seg>
256 /usr/include/evolution-data-server,
257 /usr/lib{,exec}/evolution-data-server,
258 /usr/share/evolution-data-server,
259 /usr/share/installed-tests/evolution-data-server, and
260 <!-- We explicitly disable gtk-doc generation, so comment these out
261 /usr/share/gtk-doc/html/{camel,libebackend,libebook},
262 /usr/share/gtk-doc/html/{libecal,libedata-book,libedata-cal},
263 /usr/share/gtk-doc/html/{libedataserver,libedataserverui} and
264 -->
265 /usr/share/pixmaps/evolution-data-server
266 </seg>
267 </seglistitem>
268 </segmentedlist>
269
270 <variablelist>
271 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
272 <?dbfo list-presentation="list"?>
273 <?dbhtml list-presentation="table"?>
274
275 <varlistentry id="libcamel-1">
276 <term><filename class="libraryfile">libcamel-1.2.so</filename></term>
277 <listitem>
278 <para>
279 is the <application>Evolution</application> MIME message
280 handling library
281 </para>
282 <indexterm zone="evolution-data-server libcamel-1">
283 <primary sortas="c-libcamel-1">libcamel-1.2.so</primary>
284 </indexterm>
285 </listitem>
286 </varlistentry>
287
288 <varlistentry id="libebackend-1">
289 <term><filename class="libraryfile">libebackend-1.2.so</filename></term>
290 <listitem>
291 <para>
292 is the utility library for
293 <application>Evolution Data Server</application> Backends
294 </para>
295 <indexterm zone="evolution-data-server libebackend-1">
296 <primary sortas="c-libebackend-1">libebackend-1.2.so</primary>
297 </indexterm>
298 </listitem>
299 </varlistentry>
300
301 <varlistentry id="libebook-1">
302 <term><filename class="libraryfile">libebook-1.2.so</filename></term>
303 <listitem>
304 <para>
305 is the client library for <application>Evolution</application>
306 address books
307 </para>
308 <indexterm zone="evolution-data-server libebook-1">
309 <primary sortas="c-libebook-1">libebook-1.2.so</primary>
310 </indexterm>
311 </listitem>
312 </varlistentry>
313
314 <varlistentry id="libebook-contacts-1">
315 <term><filename class="libraryfile">libebook-contacts-1.2.so</filename></term>
316 <listitem>
317 <para>
318 is the client library for <application>Evolution</application>
319 contacts
320 </para>
321 <indexterm zone="evolution-data-server libebook-contacts-1">
322 <primary sortas="c-libebook-contacts-1">libebook-contacts-1.2.so</primary>
323 </indexterm>
324 </listitem>
325 </varlistentry>
326
327 <varlistentry id="libecal-1">
328 <term><filename class="libraryfile">libecal-1.2.so</filename></term>
329 <listitem>
330 <para>
331 is the client library for <application>Evolution</application>
332 calendars
333 </para>
334 <indexterm zone="evolution-data-server libecal-1">
335 <primary sortas="c-libecal-1">libecal-1.2.so</primary>
336 </indexterm>
337 </listitem>
338 </varlistentry>
339
340 <varlistentry id="libedata-book-1">
341 <term><filename class="libraryfile">libedata-book-1.2.so</filename></term>
342 <listitem>
343 <para>
344 is the backend library for <application>Evolution</application>
345 address books
346 </para>
347 <indexterm zone="evolution-data-server libedata-book-1">
348 <primary sortas="c-libedata-book-1">libedata-book-1.2.so</primary>
349 </indexterm>
350 </listitem>
351 </varlistentry>
352
353 <varlistentry id="libedata-cal-1">
354 <term><filename class="libraryfile">libedata-cal-1.2.so</filename></term>
355 <listitem>
356 <para>
357 is the backend library for <application>Evolution</application>
358 calendars
359 </para>
360 <indexterm zone="evolution-data-server libedata-cal-1">
361 <primary sortas="c-libedata-cal-1">libedata-cal-1.2.so</primary>
362 </indexterm>
363 </listitem>
364 </varlistentry>
365
366 <varlistentry id="libedataserver-1">
367 <term><filename class="libraryfile">libedataserver-1.2.so</filename></term>
368 <listitem>
369 <para>
370 is the utility library for
371 <application>Evolution Data Server</application>
372 </para>
373 <indexterm zone="evolution-data-server libedataserver-1">
374 <primary sortas="c-libedataserver-1">libedataserver-1.2.so</primary>
375 </indexterm>
376 </listitem>
377 </varlistentry>
378
379 <varlistentry id="libedataserverui-3">
380 <term><filename class="libraryfile">libedataserverui-3.0.so</filename></term>
381 <listitem>
382 <para>
383 is the GUI utility library for
384 <application>Evolution Data Server</application>
385 </para>
386 <indexterm zone="evolution-data-server libedataserverui-3">
387 <primary sortas="c-libedataserverui-3">libedataserverui-3.0.so</primary>
388 </indexterm>
389 </listitem>
390 </varlistentry>
391
392 <varlistentry id="libedataserverui4-1">
393 <term><filename class="libraryfile">libedataserverui4-1.0.so</filename></term>
394 <listitem>
395 <para>
396 is the GTK-4 based GUI utility library for
397 <application>Evolution Data Server</application>
398 </para>
399 <indexterm zone="evolution-data-server libedataserverui4-1">
400 <primary sortas="c-libedataserverui4-1">libedataserverui4-1.0.so</primary>
401 </indexterm>
402 </listitem>
403 </varlistentry>
404
405 <varlistentry id="libetestserverutils-1">
406 <term><filename class="libraryfile">libetestserverutils.so</filename></term>
407 <listitem>
408 <para>
409 is the server test utility library for
410 <application>Evolution Data Server</application>
411 </para>
412 <indexterm zone="evolution-data-server libetestserverutils-1">
413 <primary sortas="c-libetestserverutils-1">libetestserverutils.so</primary>
414 </indexterm>
415 </listitem>
416 </varlistentry>
417
418
419 </variablelist>
420
421 </sect2>
422
423</sect1>
Note: See TracBrowser for help on using the repository browser.