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

12.1 gimp3 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 f14d3acd was f4ac7141, checked in by Pierre Labastie <pierre.labastie@…>, 10 months ago

Remove many more forgotten ftp urls

  • Property mode set to 100644
File size: 13.7 KB
RevLine 
[9199306]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
[bac8dbe]8 "&gnome-download-http;/evolution-data-server/&gnome-minor-50;/evolution-data-server-&evolution-data-server-version;.tar.xz">
[f4ac7141]9 <!ENTITY evolution-data-server-download-ftp " ">
[bac8dbe]10 <!ENTITY evolution-data-server-md5sum "6842309667639cbe48b9b714166e5abe">
[2d205a0]11 <!ENTITY evolution-data-server-size "4.7 MB">
[bac8dbe]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)">
[9199306]14]>
15
16<sect1 id="evolution-data-server"
[51dfb3e]17xreflabel="evolution-data-server-&evolution-data-server-version;">
[9199306]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>
[1c1e2b86]31 The <application>Evolution Data Server</application> package provides
[9199306]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
[b5c0ca3]38 &lfs120_checked;
[9199306]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>
[2d205a0]73
[9199306]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"/>,
[30eeb84]80 <xref linkend="nss"/>, and
[fe33e3f]81 <xref linkend="sqlite"/>
[9199306]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"/>,
[1486180]90 <xref linkend="libcanberra"/>,
[2d205a0]91 <xref linkend="libgweather"/>,
92 <xref linkend="vala"/>, and
93 <xref linkend="webkitgtk"/>
[9199306]94 </para>
95
[2126b9e]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
[9199306]102 <bridgehead renderas="sect4">Optional</bridgehead>
103 <para role="optional">
[f7038e3c]104 <xref linkend="db"/>,
[9199306]105 <xref linkend="gtk-doc"/>,
106 <xref linkend="mitkrb"/>,
[e32a0bb]107 a <xref linkend="server-mail"/> (that provides a <command>sendmail</command> command),
[bb8b4003]108 <xref linkend="openldap"/>, and
109 <ulink url="https://github.com/googlei18n/libphonenumber/">libphonenumber</ulink>
[9199306]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
[a468270d]122<screen revision="sysv"><userinput>mkdir build &amp;&amp;
123cd build &amp;&amp;
124
[2d205a0]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 \
[012fe49]135 -Wno-dev -G Ninja .. &amp;&amp;
[7bfd30d]136ninja</userinput></screen>
[a468270d]137
138<screen revision="systemd"><userinput>mkdir build &amp;&amp;
[b0c65e84]139cd build &amp;&amp;
[4538f99]140
[2d205a0]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 \
[012fe49]150 -Wno-dev -G Ninja .. &amp;&amp;
[74e0749]151ninja</userinput></screen>
[9199306]152
153 <para>
[2d205a0]154 Now, as the <systemitem class="username">root</systemitem> user:
[9199306]155 </para>
156
[74e0749]157<screen role="root"><userinput>ninja install</userinput></screen>
[2d205a0]158
[9199306]159 <para>
[74e0749]160 To test the results, issue: <command>ninja test</command>.
[9199306]161 </para>
162
[2d205a0]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. -->
[9199306]166
167 </sect2>
168
169 <sect2 role="commands">
170 <title>Command Explanations</title>
171
172 <para>
[4538f99]173 <parameter>-DENABLE_VALA_BINDINGS=ON</parameter>: This switch
[bac8dbe]174 enables building the Vala bindings. Remove it if you don't
[9199306]175 have <xref linkend="vala"/> installed.
176 </para>
177
[d792ea5]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
[f7038e3c]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.
[2f50f72c]189 <xref linkend="sqlite"/> is used for normal operation.
[f7038e3c]190 </para>
191
[2d205a0]192 <para>
[74e0749]193 <option>-DENABLE_OAUTH2_WEBKITGTK4=OFF</option>: Use this switch if
194 you did not build <xref linkend="webkitgtk" role="nodep"/> with GTK-4.
[2d205a0]195 </para>
[f05ba9e]196
[f6da3b9]197 <para revision="sysv">
[aa41434]198 <parameter>-DWITH_SYSTEMDUSERUNITDIR=no</parameter>: This switch
[f6da3b9]199 disables installing the systemd units, which are not used for a Sysv
200 build.
201 </para>
202
[9199306]203 <note>
204 <para>
205 To enable many of the optional dependencies, review the information
[4538f99]206 from <command>cmake -L CMakeLists.txt</command> for the necessary
207 parameters you must pass to the <command>cmake</command> command.
[9199306]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>
[74e0749]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,
[2d205a0]236 and libetestserverutils.so
[9199306]237 </seg>
238 <seg>
239 /usr/include/evolution-data-server,
[44621c7]240 /usr/lib{,exec}/evolution-data-server,
[f05ba9e]241 /usr/share/evolution-data-server,
[41be89a]242 /usr/share/installed-tests/evolution-data-server, and
[4348b74]243 <!-- We explicitly disable gtk-doc generation, so comment these out
[9199306]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
[4348b74]247 -->
[9199306]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
[4c24eb0a]263 handling library
[9199306]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
[4c24eb0a]276 <application>Evolution Data Server</application> Backends
[9199306]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>
[4c24eb0a]289 address books
[9199306]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
[c5ab68a]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>
[4c24eb0a]302 contacts
[c5ab68a]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
[9199306]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>
[4c24eb0a]315 calendars
[9199306]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>
[4c24eb0a]328 address books
[9199306]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>
[4c24eb0a]341 calendars
[9199306]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
[4c24eb0a]354 <application>Evolution Data Server</application>
[9199306]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
[4c24eb0a]367 <application>Evolution Data Server</application>
[9199306]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
[2d205a0]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
[c5ab68a]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
[4c24eb0a]393 <application>Evolution Data Server</application>
[c5ab68a]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
[9199306]402 </variablelist>
403
404 </sect2>
405
406</sect1>
Note: See TracBrowser for help on using the repository browser.