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

12.1 ken/TL2024 lazarus plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18
Last change on this file since 376aa9d0 was 60ad282, checked in by Douglas R. Reno <renodr@…>, 7 months ago

Fix building evolution-data-server with libxml2-2.12.x.

  • Property mode set to 100644
File size: 13.9 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-50;/evolution-data-server-&evolution-data-server-version;.tar.xz">
9 <!ENTITY evolution-data-server-download-ftp " ">
10 <!ENTITY evolution-data-server-md5sum "2e49ec11ccdf99621be465fc87dfbbe2">
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 <para>
118 First, fix a build failure when using libxml2-2.12.x:
119 </para>
120
121<screen><userinput remap="pre">sed -i '/xpathInternals.h/a #include &lt;libxml/globals.h&gt;' src/libedataserver/e-xml-utils.c</userinput></screen>
122
123 <para>
124 Install <application>Evolution Data Server</application> by running
125 the following commands:
126 </para>
127
128<screen revision="sysv"><userinput>mkdir build &amp;&amp;
129cd build &amp;&amp;
130
131cmake -DCMAKE_INSTALL_PREFIX=/usr \
132 -DSYSCONF_INSTALL_DIR=/etc \
133 -DENABLE_VALA_BINDINGS=ON \
134 -DENABLE_INSTALLED_TESTS=ON \
135 -DWITH_OPENLDAP=OFF \
136 -DWITH_KRB5=OFF \
137 -DENABLE_INTROSPECTION=ON \
138 -DENABLE_GTK_DOC=OFF \
139 -DWITH_LIBDB=OFF \
140 -DWITH_SYSTEMDUSERUNITDIR=no \
141 -Wno-dev -G Ninja .. &amp;&amp;
142ninja</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 -Wno-dev -G Ninja .. &amp;&amp;
157ninja</userinput></screen>
158
159 <para>
160 Now, as the <systemitem class="username">root</systemitem> user:
161 </para>
162
163<screen role="root"><userinput>ninja install</userinput></screen>
164
165 <para>
166 To test the results, issue: <command>ninja 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 <para>
179 <parameter>-DENABLE_VALA_BINDINGS=ON</parameter>: This switch
180 enables building the Vala bindings. Remove it if you don't
181 have <xref linkend="vala"/> installed.
182 </para>
183
184 <para>
185 <parameter>-DENABLE_GTK_DOC=OFF</parameter>: This switch
186 disables building the API documentation. It is broken for
187 this package due to the use of a long deprecated gtk-doc program
188 that is no longer available.
189 </para>
190
191 <para>
192 <parameter>-DWITH_LIBDB=OFF</parameter>: This switch allows building
193 this package without &berkeley-db;. <!--This package only uses
194 &berkeley-db; to import data from very outdated releases.-->
195 <xref linkend="sqlite"/> is used for normal operation.
196 </para>
197
198 <para>
199 <option>-DENABLE_OAUTH2_WEBKITGTK4=OFF</option>: Use this switch if
200 you did not build <xref linkend="webkitgtk" role="nodep"/> with GTK-4.
201 </para>
202
203 <para revision="sysv">
204 <parameter>-DWITH_SYSTEMDUSERUNITDIR=no</parameter>: This switch
205 disables installing the systemd units, which are not used for a Sysv
206 build.
207 </para>
208
209 <note>
210 <para>
211 To enable many of the optional dependencies, review the information
212 from <command>cmake -L CMakeLists.txt</command> for the necessary
213 parameters you must pass to the <command>cmake</command> command.
214 </para>
215 </note>
216
217 </sect2>
218
219 <sect2 role="content">
220 <title>Contents</title>
221
222 <segmentedlist>
223 <segtitle>Installed Programs</segtitle>
224 <segtitle>Installed Libraries</segtitle>
225 <segtitle>Installed Directories</segtitle>
226
227 <seglistitem>
228 <seg>
229 None
230 </seg>
231 <seg>
232 libcamel-1.2.so,
233 libebackend-1.2.so,
234 libebook-1.2.so,
235 libebook-contacts-1.2.so,
236 libecal-2.0.so,
237 libedata-book-1.2.so,
238 libedata-cal-2.0.so,
239 libedataserver-1.2.so,
240 libedataserverui-1.2.so,
241 libedataserverui4-1.0.so,
242 and libetestserverutils.so
243 </seg>
244 <seg>
245 /usr/include/evolution-data-server,
246 /usr/lib{,exec}/evolution-data-server,
247 /usr/share/evolution-data-server,
248 /usr/share/installed-tests/evolution-data-server, and
249 <!-- We explicitly disable gtk-doc generation, so comment these out
250 /usr/share/gtk-doc/html/{camel,libebackend,libebook},
251 /usr/share/gtk-doc/html/{libecal,libedata-book,libedata-cal},
252 /usr/share/gtk-doc/html/{libedataserver,libedataserverui} and
253 -->
254 /usr/share/pixmaps/evolution-data-server
255 </seg>
256 </seglistitem>
257 </segmentedlist>
258
259 <variablelist>
260 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
261 <?dbfo list-presentation="list"?>
262 <?dbhtml list-presentation="table"?>
263
264 <varlistentry id="libcamel-1">
265 <term><filename class="libraryfile">libcamel-1.2.so</filename></term>
266 <listitem>
267 <para>
268 is the <application>Evolution</application> MIME message
269 handling library
270 </para>
271 <indexterm zone="evolution-data-server libcamel-1">
272 <primary sortas="c-libcamel-1">libcamel-1.2.so</primary>
273 </indexterm>
274 </listitem>
275 </varlistentry>
276
277 <varlistentry id="libebackend-1">
278 <term><filename class="libraryfile">libebackend-1.2.so</filename></term>
279 <listitem>
280 <para>
281 is the utility library for
282 <application>Evolution Data Server</application> Backends
283 </para>
284 <indexterm zone="evolution-data-server libebackend-1">
285 <primary sortas="c-libebackend-1">libebackend-1.2.so</primary>
286 </indexterm>
287 </listitem>
288 </varlistentry>
289
290 <varlistentry id="libebook-1">
291 <term><filename class="libraryfile">libebook-1.2.so</filename></term>
292 <listitem>
293 <para>
294 is the client library for <application>Evolution</application>
295 address books
296 </para>
297 <indexterm zone="evolution-data-server libebook-1">
298 <primary sortas="c-libebook-1">libebook-1.2.so</primary>
299 </indexterm>
300 </listitem>
301 </varlistentry>
302
303 <varlistentry id="libebook-contacts-1">
304 <term><filename class="libraryfile">libebook-contacts-1.2.so</filename></term>
305 <listitem>
306 <para>
307 is the client library for <application>Evolution</application>
308 contacts
309 </para>
310 <indexterm zone="evolution-data-server libebook-contacts-1">
311 <primary sortas="c-libebook-contacts-1">libebook-contacts-1.2.so</primary>
312 </indexterm>
313 </listitem>
314 </varlistentry>
315
316 <varlistentry id="libecal-1">
317 <term><filename class="libraryfile">libecal-1.2.so</filename></term>
318 <listitem>
319 <para>
320 is the client library for <application>Evolution</application>
321 calendars
322 </para>
323 <indexterm zone="evolution-data-server libecal-1">
324 <primary sortas="c-libecal-1">libecal-1.2.so</primary>
325 </indexterm>
326 </listitem>
327 </varlistentry>
328
329 <varlistentry id="libedata-book-1">
330 <term><filename class="libraryfile">libedata-book-1.2.so</filename></term>
331 <listitem>
332 <para>
333 is the backend library for <application>Evolution</application>
334 address books
335 </para>
336 <indexterm zone="evolution-data-server libedata-book-1">
337 <primary sortas="c-libedata-book-1">libedata-book-1.2.so</primary>
338 </indexterm>
339 </listitem>
340 </varlistentry>
341
342 <varlistentry id="libedata-cal-1">
343 <term><filename class="libraryfile">libedata-cal-1.2.so</filename></term>
344 <listitem>
345 <para>
346 is the backend library for <application>Evolution</application>
347 calendars
348 </para>
349 <indexterm zone="evolution-data-server libedata-cal-1">
350 <primary sortas="c-libedata-cal-1">libedata-cal-1.2.so</primary>
351 </indexterm>
352 </listitem>
353 </varlistentry>
354
355 <varlistentry id="libedataserver-1">
356 <term><filename class="libraryfile">libedataserver-1.2.so</filename></term>
357 <listitem>
358 <para>
359 is the utility library for
360 <application>Evolution Data Server</application>
361 </para>
362 <indexterm zone="evolution-data-server libedataserver-1">
363 <primary sortas="c-libedataserver-1">libedataserver-1.2.so</primary>
364 </indexterm>
365 </listitem>
366 </varlistentry>
367
368 <varlistentry id="libedataserverui-3">
369 <term><filename class="libraryfile">libedataserverui-3.0.so</filename></term>
370 <listitem>
371 <para>
372 is the GUI utility library for
373 <application>Evolution Data Server</application>
374 </para>
375 <indexterm zone="evolution-data-server libedataserverui-3">
376 <primary sortas="c-libedataserverui-3">libedataserverui-3.0.so</primary>
377 </indexterm>
378 </listitem>
379 </varlistentry>
380
381 <varlistentry id="libedataserverui4-1">
382 <term><filename class="libraryfile">libedataserverui4-1.0.so</filename></term>
383 <listitem>
384 <para>
385 is the GTK-4 based GUI utility library for
386 <application>Evolution Data Server</application>
387 </para>
388 <indexterm zone="evolution-data-server libedataserverui4-1">
389 <primary sortas="c-libedataserverui4-1">libedataserverui4-1.0.so</primary>
390 </indexterm>
391 </listitem>
392 </varlistentry>
393
394 <varlistentry id="libetestserverutils-1">
395 <term><filename class="libraryfile">libetestserverutils.so</filename></term>
396 <listitem>
397 <para>
398 is the server test utility library for
399 <application>Evolution Data Server</application>
400 </para>
401 <indexterm zone="evolution-data-server libetestserverutils-1">
402 <primary sortas="c-libetestserverutils-1">libetestserverutils.so</primary>
403 </indexterm>
404 </listitem>
405 </varlistentry>
406
407
408 </variablelist>
409
410 </sect2>
411
412</sect1>
Note: See TracBrowser for help on using the repository browser.