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

12.0 12.1 kea ken/TL2024 ken/tuningfonts lazarus lxqt plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since 7bfd30d was 7bfd30d, checked in by Pierre Labastie <pierre.labastie@…>, 13 months ago

evolution-data-server: use ninja also for sysv

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