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

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 ceb94bed was ceb94bed, checked in by Douglas R. Reno <renodr@…>, 7 months ago

Update to evolution-data-server-3.50.1

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