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

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

Update to evolution-data-server-3.50.0

  • Property mode set to 100644
File size: 13.8 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 "&gnome-download-ftp;/evolution-data-server/&gnome-minor-50;/evolution-data-server-&evolution-data-server-version;.tar.xz">
11 <!ENTITY evolution-data-server-md5sum "6842309667639cbe48b9b714166e5abe">
12 <!ENTITY evolution-data-server-size "4.7 MB">
13 <!ENTITY evolution-data-server-buildsize "177 MB (with tests)">
14 <!ENTITY evolution-data-server-time "0.7 SBU (using parallelism=4, add 0.2 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 &lfs120_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 <para>
174 <parameter>-DENABLE_VALA_BINDINGS=ON</parameter>: This switch
175 enables building the Vala bindings. Remove it if you don't
176 have <xref linkend="vala"/> installed.
177 </para>
178
179 <para>
180 <parameter>-DENABLE_GTK_DOC=OFF</parameter>: This switch
181 disables building the API documentation. It is broken for
182 this package due to the use of a long deprecated gtk-doc program
183 that is no longer available.
184 </para>
185
186 <para>
187 <parameter>-DWITH_LIBDB=OFF</parameter>: This switch allows building
188 this package without <xref linkend="db"/>. This package only uses
189 <xref linkend="db"/> to import data from very outdated releases.
190 <xref linkend="sqlite"/> is used for normal operation.
191 </para>
192
193 <para>
194 <option>-DENABLE_OAUTH2_WEBKITGTK4=OFF</option>: Use this switch if
195 you did not build <xref linkend="webkitgtk" role="nodep"/> with GTK-4.
196 </para>
197
198 <para revision="sysv">
199 <parameter>-DWITH_SYSTEMDUSERUNITDIR=no</parameter>: This switch
200 disables installing the systemd units, which are not used for a Sysv
201 build.
202 </para>
203
204 <note>
205 <para>
206 To enable many of the optional dependencies, review the information
207 from <command>cmake -L CMakeLists.txt</command> for the necessary
208 parameters you must pass to the <command>cmake</command> command.
209 </para>
210 </note>
211
212 </sect2>
213
214 <sect2 role="content">
215 <title>Contents</title>
216
217 <segmentedlist>
218 <segtitle>Installed Programs</segtitle>
219 <segtitle>Installed Libraries</segtitle>
220 <segtitle>Installed Directories</segtitle>
221
222 <seglistitem>
223 <seg>
224 None
225 </seg>
226 <seg>
227 libcamel-1.2.so,
228 libebackend-1.2.so,
229 libebook-1.2.so,
230 libebook-contacts-1.2.so,
231 libecal-2.0.so,
232 libedata-book-1.2.so,
233 libedata-cal-2.0.so,
234 libedataserver-1.2.so,
235 libedataserverui-1.2.so,
236 libedataserverui4-1.0.so,
237 and libetestserverutils.so
238 </seg>
239 <seg>
240 /usr/include/evolution-data-server,
241 /usr/lib{,exec}/evolution-data-server,
242 /usr/share/evolution-data-server,
243 /usr/share/installed-tests/evolution-data-server, and
244 <!-- We explicitly disable gtk-doc generation, so comment these out
245 /usr/share/gtk-doc/html/{camel,libebackend,libebook},
246 /usr/share/gtk-doc/html/{libecal,libedata-book,libedata-cal},
247 /usr/share/gtk-doc/html/{libedataserver,libedataserverui} and
248 -->
249 /usr/share/pixmaps/evolution-data-server
250 </seg>
251 </seglistitem>
252 </segmentedlist>
253
254 <variablelist>
255 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
256 <?dbfo list-presentation="list"?>
257 <?dbhtml list-presentation="table"?>
258
259 <varlistentry id="libcamel-1">
260 <term><filename class="libraryfile">libcamel-1.2.so</filename></term>
261 <listitem>
262 <para>
263 is the <application>Evolution</application> MIME message
264 handling library
265 </para>
266 <indexterm zone="evolution-data-server libcamel-1">
267 <primary sortas="c-libcamel-1">libcamel-1.2.so</primary>
268 </indexterm>
269 </listitem>
270 </varlistentry>
271
272 <varlistentry id="libebackend-1">
273 <term><filename class="libraryfile">libebackend-1.2.so</filename></term>
274 <listitem>
275 <para>
276 is the utility library for
277 <application>Evolution Data Server</application> Backends
278 </para>
279 <indexterm zone="evolution-data-server libebackend-1">
280 <primary sortas="c-libebackend-1">libebackend-1.2.so</primary>
281 </indexterm>
282 </listitem>
283 </varlistentry>
284
285 <varlistentry id="libebook-1">
286 <term><filename class="libraryfile">libebook-1.2.so</filename></term>
287 <listitem>
288 <para>
289 is the client library for <application>Evolution</application>
290 address books
291 </para>
292 <indexterm zone="evolution-data-server libebook-1">
293 <primary sortas="c-libebook-1">libebook-1.2.so</primary>
294 </indexterm>
295 </listitem>
296 </varlistentry>
297
298 <varlistentry id="libebook-contacts-1">
299 <term><filename class="libraryfile">libebook-contacts-1.2.so</filename></term>
300 <listitem>
301 <para>
302 is the client library for <application>Evolution</application>
303 contacts
304 </para>
305 <indexterm zone="evolution-data-server libebook-contacts-1">
306 <primary sortas="c-libebook-contacts-1">libebook-contacts-1.2.so</primary>
307 </indexterm>
308 </listitem>
309 </varlistentry>
310
311 <varlistentry id="libecal-1">
312 <term><filename class="libraryfile">libecal-1.2.so</filename></term>
313 <listitem>
314 <para>
315 is the client library for <application>Evolution</application>
316 calendars
317 </para>
318 <indexterm zone="evolution-data-server libecal-1">
319 <primary sortas="c-libecal-1">libecal-1.2.so</primary>
320 </indexterm>
321 </listitem>
322 </varlistentry>
323
324 <varlistentry id="libedata-book-1">
325 <term><filename class="libraryfile">libedata-book-1.2.so</filename></term>
326 <listitem>
327 <para>
328 is the backend library for <application>Evolution</application>
329 address books
330 </para>
331 <indexterm zone="evolution-data-server libedata-book-1">
332 <primary sortas="c-libedata-book-1">libedata-book-1.2.so</primary>
333 </indexterm>
334 </listitem>
335 </varlistentry>
336
337 <varlistentry id="libedata-cal-1">
338 <term><filename class="libraryfile">libedata-cal-1.2.so</filename></term>
339 <listitem>
340 <para>
341 is the backend library for <application>Evolution</application>
342 calendars
343 </para>
344 <indexterm zone="evolution-data-server libedata-cal-1">
345 <primary sortas="c-libedata-cal-1">libedata-cal-1.2.so</primary>
346 </indexterm>
347 </listitem>
348 </varlistentry>
349
350 <varlistentry id="libedataserver-1">
351 <term><filename class="libraryfile">libedataserver-1.2.so</filename></term>
352 <listitem>
353 <para>
354 is the utility library for
355 <application>Evolution Data Server</application>
356 </para>
357 <indexterm zone="evolution-data-server libedataserver-1">
358 <primary sortas="c-libedataserver-1">libedataserver-1.2.so</primary>
359 </indexterm>
360 </listitem>
361 </varlistentry>
362
363 <varlistentry id="libedataserverui-3">
364 <term><filename class="libraryfile">libedataserverui-3.0.so</filename></term>
365 <listitem>
366 <para>
367 is the GUI utility library for
368 <application>Evolution Data Server</application>
369 </para>
370 <indexterm zone="evolution-data-server libedataserverui-3">
371 <primary sortas="c-libedataserverui-3">libedataserverui-3.0.so</primary>
372 </indexterm>
373 </listitem>
374 </varlistentry>
375
376 <varlistentry id="libedataserverui4-1">
377 <term><filename class="libraryfile">libedataserverui4-1.0.so</filename></term>
378 <listitem>
379 <para>
380 is the GTK-4 based GUI utility library for
381 <application>Evolution Data Server</application>
382 </para>
383 <indexterm zone="evolution-data-server libedataserverui4-1">
384 <primary sortas="c-libedataserverui4-1">libedataserverui4-1.0.so</primary>
385 </indexterm>
386 </listitem>
387 </varlistentry>
388
389 <varlistentry id="libetestserverutils-1">
390 <term><filename class="libraryfile">libetestserverutils.so</filename></term>
391 <listitem>
392 <para>
393 is the server test utility library for
394 <application>Evolution Data Server</application>
395 </para>
396 <indexterm zone="evolution-data-server libetestserverutils-1">
397 <primary sortas="c-libetestserverutils-1">libetestserverutils.so</primary>
398 </indexterm>
399 </listitem>
400 </varlistentry>
401
402
403 </variablelist>
404
405 </sect2>
406
407</sect1>
Note: See TracBrowser for help on using the repository browser.