source: gnome/add/evolution-data-server.xml@ 7e645e6

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 7e645e6 was 7e645e6, checked in by Randy McMurchy <randy@…>, 19 years ago

Updated to Evolution Data Server-1.2.2

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@4160 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 6.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY evolution-data-server-download-http "http://ftp.gnome.org/pub/gnome/sources/evolution-data-server/1.2/evolution-data-server-&evolution-data-server-version;.tar.bz2">
8 <!ENTITY evolution-data-server-download-ftp "ftp://ftp.gnome.org/pub/gnome/sources/evolution-data-server/1.2/evolution-data-server-&evolution-data-server-version;.tar.bz2">
9 <!ENTITY evolution-data-server-md5sum "2b15cba799e4594926472dca3e1747bb">
10 <!ENTITY evolution-data-server-size "7.5 MB">
11 <!ENTITY evolution-data-server-buildsize "146 MB">
12 <!ENTITY evolution-data-server-time "2.9 SBU">
13]>
14
15<sect1 id="evolution-data-server"
16xreflabel="Evolution Data Server-&evolution-data-server-version;">
17<sect1info>
18<othername>$LastChangedBy$</othername>
19<date>$Date$</date>
20</sect1info>
21<?dbhtml filename="evolution-data-server.html"?>
22<title>Evolution Data Server-&evolution-data-server-version;</title>
23<indexterm zone="evolution-data-server">
24<primary sortas="a-Evolution-Data-Server">Evolution Data Server</primary>
25</indexterm>
26
27<sect2>
28<title>Introduction to <application>Evolution Data Server</application></title>
29
30<para>The <application>Evolution Data Server</application> package provides a
31unified backend for programs that work with contacts, tasks, and calendar
32information. It was originally developed for
33<application>Evolution</application> (hence the name), but is now used by
34other packages as well.</para>
35
36<sect3><title>Package information</title>
37<itemizedlist spacing="compact">
38<listitem><para>Download (HTTP):
39<ulink url="&evolution-data-server-download-http;"/></para></listitem>
40<listitem><para>Download (FTP):
41<ulink url="&evolution-data-server-download-ftp;"/></para></listitem>
42<listitem><para>Download MD5 sum:
43&evolution-data-server-md5sum;</para></listitem>
44<listitem><para>Download size:
45&evolution-data-server-size;</para></listitem>
46<listitem><para>Estimated disk space required:
47&evolution-data-server-buildsize;</para></listitem>
48<listitem><para>Estimated build time:
49&evolution-data-server-time;</para></listitem></itemizedlist>
50</sect3>
51
52<sect3><title><application>Evolution Data Server</application>
53dependencies</title>
54<sect4><title>Required</title>
55<para><xref linkend="libgnomeui"/> and
56<xref linkend="libsoup"/></para>
57</sect4>
58
59<sect4><title>Optional</title>
60<para><xref linkend="openldap"/>,
61<xref linkend="mozilla"/> (nsp4 libs for SSL and S/MIME support),
62<xref linkend="sendmail"/>,
63<xref linkend="heimdal"/> or <xref linkend="mitkrb"/>,
64<ulink url="http://www.pdc.kth.se/kth-krb/">krb4</ulink>,
65<xref linkend="gtk-doc"/> and
66<xref linkend="docbook-utils"/></para>
67</sect4>
68</sect3>
69
70</sect2>
71
72<sect2>
73<title>Installation of <application>Evolution Data Server</application></title>
74
75<para>Install <application>Evolution Data Server</application> by running the
76following commands:</para>
77
78<screen><userinput><command>./configure --prefix=`pkg-config --variable=prefix ORBit-2.0` \
79 --libexecdir=`pkg-config --variable=prefix ORBit-2.0`/sbin \
80 --sysconfdir=/etc/gnome &amp;&amp;
81make</command></userinput></screen>
82
83<para>To test the results, issue: <command>make check</command>.</para>
84
85<para>Now, as the root user:</para>
86
87<screen><userinput role='root'><command>make install</command></userinput></screen>
88
89</sect2>
90
91<sect2>
92<title>Command explanations</title>
93
94<para><parameter>--libexecdir=`pkg-config --variable=prefix
95ORBit-2.0`/sbin</parameter>: This switch puts libexec files in
96<filename class="directory">$GNOME_PREFIX/sbin</filename> instead of
97<filename class="directory">$GNOME_PREFIX/libexec</filename>.</para>
98
99<para><parameter>--sysconfdir=/etc/gnome</parameter>: This switch
100puts configuration files in <filename class="directory">/etc/gnome</filename>
101instead of <filename class="directory">$GNOME_PREFIX/etc</filename>.</para>
102
103<note><para>To enable many of the optional dependencies, review the
104information from <command>./configure --help</command> for the necessary
105parameters you must pass to the <command>configure</command>
106script.</para></note>
107
108</sect2>
109
110<sect2>
111<title>Contents</title>
112
113<segmentedlist>
114<segtitle>Installed Programs</segtitle>
115<segtitle>Installed Libraries</segtitle>
116<segtitle>Installed Directories</segtitle>
117
118<seglistitem>
119<seg>camel-index-control-1.2, camel-lock-helper-1.2 and
120evolution-data-server-1.2</seg>
121<seg>libcamel-1.2.so, libcamel-provider-1.2.so, libebook-1.2.so,
122libecal-1.2.so, libedata-book-1.2.so, libedata-cal-1.2.so,
123libedataserver-1.2.so, libedataserverui-1.2.so, libegroupwise-1.2.so and
124numerous provider and extension modules.</seg>
125<seg>$GNOME_PREFIX/include/evolution-data-server-1.2,
126$GNOME_PREFIX/lib/evolution-data-server-1.2,
127$GNOME_PREFIX/share/evolution-data-server-1.2,
128$GNOME_PREFIX/share/pixmaps/evolution-data-server-1.2,
129$GNOME_PREFIX/share/idl/evolution-data-server-1.2 and
130$GNOME_PREFIX/share/gtk-doc/html/libe*</seg>
131</seglistitem>
132</segmentedlist>
133
134<variablelist>
135<bridgehead renderas="sect3">Short Descriptions</bridgehead>
136<?dbfo list-presentation="list"?>
137
138<varlistentry id="evolution-data-server-1.2">
139<term><command>evolution-data-server-1.2</command></term>
140<listitem><para>is the <application>Evolution</application> database backend
141server.</para>
142<indexterm zone="evolution-data-server evolution-data-server-1.2">
143<primary sortas="b-evolution-data-server-1.2">evolution-data-server-1.2</primary>
144</indexterm></listitem>
145</varlistentry>
146
147<varlistentry id="libe.so">
148<term><filename class='libraryfile'>libe*.so</filename></term>
149<listitem><para>libraries are client, backend and utility libraries for the
150<application>Evolution</application> address books, calendar and data
151servers.</para>
152<indexterm zone="evolution-data-server libe.so">
153<primary sortas="c-libe.so">libe*.so</primary>
154</indexterm></listitem>
155</varlistentry>
156</variablelist>
157
158</sect2>
159
160</sect1>
Note: See TracBrowser for help on using the repository browser.