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

12.0 12.1 ken/TL2024 ken/tuningfonts lazarus plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18
Last change on this file since 6b3ea4a was 29cbc9e, checked in by Douglas R. Reno <renodr@…>, 12 months ago

Update to evolution and evolution-data-server 3.48.4

  • Property mode set to 100644
File size: 14.2 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-48;/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-48;/evolution-data-server-&evolution-data-server-version;.tar.xz">
11 <!ENTITY evolution-data-server-md5sum "b387f584adf2318e958d7928925d1e37">
12 <!ENTITY evolution-data-server-size "4.7 MB">
13 <!ENTITY evolution-data-server-buildsize "147 MB (with tests)">
14 <!ENTITY evolution-data-server-time "0.6 SBU (using parallelism=4, add 0.1 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 &lfs113_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 </sect2>
114
115 <sect2 role="installation">
116 <title>Installation of Evolution Data Server</title>
117
118 <para>
119 Install <application>Evolution Data Server</application> by running
120 the following commands:
121 </para>
122
123<screen revision="sysv"><userinput>mkdir build &amp;&amp;
124cd build &amp;&amp;
125
126cmake -DCMAKE_INSTALL_PREFIX=/usr \
127 -DSYSCONF_INSTALL_DIR=/etc \
128 -DENABLE_VALA_BINDINGS=ON \
129 -DENABLE_INSTALLED_TESTS=ON \
130 -DWITH_OPENLDAP=OFF \
131 -DWITH_KRB5=OFF \
132 -DENABLE_INTROSPECTION=ON \
133 -DENABLE_GTK_DOC=OFF \
134 -DWITH_LIBDB=OFF \
135 -DWITH_SYSTEMDUSERUNITDIR=no \
136 -Wno-dev -G Ninja .. &amp;&amp;
137ninja</userinput></screen>
138
139<screen revision="systemd"><userinput>mkdir build &amp;&amp;
140cd build &amp;&amp;
141
142cmake -DCMAKE_INSTALL_PREFIX=/usr \
143 -DSYSCONF_INSTALL_DIR=/etc \
144 -DENABLE_VALA_BINDINGS=ON \
145 -DENABLE_INSTALLED_TESTS=ON \
146 -DWITH_OPENLDAP=OFF \
147 -DWITH_KRB5=OFF \
148 -DENABLE_INTROSPECTION=ON \
149 -DENABLE_GTK_DOC=OFF \
150 -DWITH_LIBDB=OFF \
151 -Wno-dev -G Ninja .. &amp;&amp;
152ninja</userinput></screen>
153
154 <para>
155 Now, as the <systemitem class="username">root</systemitem> user:
156 </para>
157
158<screen role="root"><userinput>ninja install</userinput></screen>
159
160 <para>
161 To test the results, issue: <command>ninja test</command>.
162 </para>
163
164 <!-- The tests need to be run after the package is installed due to
165 compatibility issues that show up when upgrading from previous versions
166 of e-d-s. This is due to soup2/soup3 mixing. -->
167
168 </sect2>
169
170 <sect2 role="commands">
171 <title>Command Explanations</title>
172
173<!--
174 <para>
175 <parameter>-DENABLE_GOOGLE=ON</parameter>: This switch enables
176 access to google services via <xref linkend="libgdata"/> and also
177 enables the Google Authentication option.
178 </para>
179-->
180
181 <para>
182 <parameter>-DENABLE_VALA_BINDINGS=ON</parameter>: This switch
183 enables building the Vala bindings. Remove if you don't
184 have <xref linkend="vala"/> installed.
185 </para>
186
187 <para>
188 <parameter>-DENABLE_GTK_DOC=OFF</parameter>: This switch
189 disables building the API documentation. It is broken for
190 this package due to the use of a long deprecated gtk-doc program
191 that is no longer available.
192 </para>
193
194 <para>
195 <parameter>-DWITH_LIBDB=OFF</parameter>: This switch allows building
196 this package without <xref linkend="db"/>. This package only uses
197 <xref linkend="db"/> to import data from very outdated releases.
198 <xref linkend="sqlite"/> is used for normal operation.
199 </para>
200
201<!--
202 <para>
203 <parameter>-DWITH_GWEATHER4=ON</parameter>: This switch allows building
204 this package with <xref linkend="libgweather"/>.
205 </para>
206-->
207
208 <para>
209 <option>-DENABLE_OAUTH2_WEBKITGTK4=OFF</option>: Use this switch if
210 you did not build <xref linkend="webkitgtk" role="nodep"/> with GTK-4.
211 </para>
212
213 <para revision="sysv">
214 <parameter>-DWITH_SYSTEMDUSERUNITDIR=no</parameter>: This switch
215 disables installing the systemd units, which are not used for a Sysv
216 build.
217 </para>
218
219 <note>
220 <para>
221 To enable many of the optional dependencies, review the information
222 from <command>cmake -L CMakeLists.txt</command> for the necessary
223 parameters you must pass to the <command>cmake</command> command.
224 </para>
225 </note>
226
227 </sect2>
228
229 <sect2 role="content">
230 <title>Contents</title>
231
232 <segmentedlist>
233 <segtitle>Installed Programs</segtitle>
234 <segtitle>Installed Libraries</segtitle>
235 <segtitle>Installed Directories</segtitle>
236
237 <seglistitem>
238 <seg>
239 None
240 </seg>
241 <seg>
242 libcamel-1.2.so,
243 libebackend-1.2.so,
244 libebook-1.2.so,
245 libebook-contacts-1.2.so,
246 libecal-2.0.so,
247 libedata-book-1.2.so,
248 libedata-cal-2.0.so,
249 libedataserver-1.2.so,
250 libedataserverui-1.2.so,
251 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.