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

12.1 ken/TL2024 lazarus trunk xry111/llvm18
Last change on this file since 24f9318 was 24f9318, checked in by Douglas R. Reno <renodr@…>, 4 months ago

Update to evolution-data-server-3.50.4

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