source: gnome/applications/evolution.xml@ eb305e7b

11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since eb305e7b was 41b24b5, checked in by Bruce Dubbs <bdubbs@…>, 3 years ago

Fix evolution url

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

  • Property mode set to 100644
File size: 7.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 <!-- Editors: Make sure directory is correct when updating -->
8
9 <!ENTITY evolution-download-http "&gnome-download-http;/evolution/3.40;/evolution-&evolution-version;.tar.xz">
10 <!ENTITY evolution-download-ftp "&gnome-download-ftp;/evolution/3.40/evolution-&evolution-version;.tar.xz">
11 <!ENTITY evolution-md5sum "913ced26496c3a5876d2c8ab488f9073">
12 <!ENTITY evolution-size "12 MB">
13 <!ENTITY evolution-buildsize "347 MB">
14 <!ENTITY evolution-time "1.1 SBU (Using parallelism=4)">
15]>
16
17<sect1 id="evolution" xreflabel="Evolution-&evolution-version;">
18 <?dbhtml filename="evolution.html" ?>
19
20 <sect1info>
21 <othername>$LastChangedBy$</othername>
22 <date>$Date$</date>
23 </sect1info>
24
25 <title>Evolution-&evolution-version;</title>
26
27 <indexterm zone="evolution">
28 <primary sortas="a-Evolution">Evolution</primary>
29 </indexterm>
30
31 <sect2 role="package">
32 <title>Introduction to Evolution</title>
33
34 <para>
35 The <application>Evolution</application> package contains an
36 integrated mail, calendar and address book suite designed for the
37 <application>GNOME</application> environment.
38 </para>
39
40 &lfs101_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>
46 Download (HTTP): <ulink url="&evolution-download-http;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download (FTP): <ulink url="&evolution-download-ftp;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download MD5 sum: &evolution-md5sum;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download size: &evolution-size;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated disk space required: &evolution-buildsize;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated build time: &evolution-time;
72 </para>
73 </listitem>
74 </itemizedlist>
75 <!--
76 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
77 <itemizedlist spacing="compact">
78 <listitem>
79 <para>
80 Required patch:
81 <ulink url="&patch-root;/evolution-&evolution-version;-security_fix-1.patch"/>
82 </para>
83 </listitem>
84 </itemizedlist>
85 -->
86 <bridgehead renderas="sect3">Evolution Dependencies</bridgehead>
87
88 <bridgehead renderas="sect4">Required</bridgehead>
89 <para role="required">
90 <xref linkend="adwaita-icon-theme"/>,
91 <xref linkend="evolution-data-server"/>,
92 <xref linkend="gnome-autoar"/>,
93 <xref linkend="itstool"/>,
94 <xref linkend="libgdata"/>,
95 <xref linkend="shared-mime-info"/>, and
96 <xref linkend="webkitgtk"/>
97 </para>
98
99 <bridgehead renderas="sect4">Recommended</bridgehead>
100 <para role="recommended">
101 <xref linkend="bogofilter"/>,
102 <xref linkend="enchant"/>,
103 <xref linkend="gnome-desktop"/>,
104 <xref linkend="gspell"/>,
105 <xref linkend="highlight"/>,
106 <xref linkend="libcanberra"/>,
107 <xref linkend="libgweather"/>,
108 <xref linkend="libnotify"/>,
109 <xref linkend="openldap"/>, and
110 <xref linkend="seahorse"/>
111 </para>
112
113 <bridgehead renderas="sect4">Optional</bridgehead>
114 <para role="optional">
115 <xref linkend="clutter-gtk"/>,
116 <xref linkend="geoclue2"/>,
117 <xref linkend="geocode-glib"/>, and
118 <xref linkend="libchamplain"/> (Contact Maps plugin),
119 <xref linkend="gtk-doc"/>,
120 <ulink url="https://glade.gnome.org/">Glade</ulink>,
121 <ulink url="http://www.five-ten-sg.com/libpst/">libpst</ulink>,
122 <ulink url="https://launchpad.net/libunity/">libunity</ulink>,
123 <ulink url="https://github.com/Yeraze/ytnef">libytnef</ulink>
124 </para>
125
126 <para condition="html" role="usernotes">User Notes:
127 <ulink url="&blfs-wiki;/evolution"/>
128 </para>
129 </sect2>
130
131 <sect2 role="installation">
132 <title>Installation of Evolution</title>
133
134 <para>
135 Install <application>Evolution</application> by running the following
136 commands:
137 </para>
138
139<screen><userinput>mkdir build &amp;&amp;
140cd build &amp;&amp;
141
142cmake -DCMAKE_INSTALL_PREFIX=/usr \
143 -DSYSCONF_INSTALL_DIR=/etc \
144 -DENABLE_INSTALLED_TESTS=ON \
145 -DENABLE_PST_IMPORT=OFF \
146 -DENABLE_YTNEF=OFF \
147 -DENABLE_CONTACT_MAPS=OFF \
148 -G Ninja .. &amp;&amp;
149ninja</userinput></screen>
150
151 <para>
152 This package does not come with a test suite.
153 </para>
154
155 <para>
156 Now, as the <systemitem class="username">root</systemitem> user:
157 </para>
158
159<screen role="root"><userinput>ninja install</userinput></screen>
160
161 </sect2>
162
163 <sect2 role="commands">
164 <title>Command Explanations</title>
165
166 <para>
167 <parameter>-DENABLE_YTNEF=OFF</parameter>: This switch is used to
168 disable the yTNEF library usage because
169 <application>libytnef</application> is not part of BLFS.
170 </para>
171
172 <para>
173 <parameter>-DENABLE_PST_IMPORT=OFF</parameter>: This switch is
174 used to disable the pst-import plugin because
175 <application>libpst</application> is not part of BLFS.
176 </para>
177
178 <para>
179 <option>-DENABLE_CONTACT_MAPS=ON</option>: Use this switch if you
180 have installed the necessary dependencies and wish to build the
181 Contact Maps plugin.
182 </para>
183
184 </sect2>
185
186 <sect2 role="content">
187 <title>Contents</title>
188
189 <segmentedlist>
190 <segtitle>Installed Programs</segtitle>
191 <segtitle>Installed Libraries</segtitle>
192 <segtitle>Installed Directories</segtitle>
193
194 <seglistitem>
195 <seg>
196 evolution
197 </seg>
198 <seg>
199 libeabutil.so,
200 libeabwidgets.so,
201 libecontacteditor.so,
202 libecontactlisteditor.so,
203 libecontactprint.so,
204 <!-- libedomutils.so, -->
205 libemail-engine.so,
206 libessmime.so,
207 libevolution-addressbook-importers.so,
208 libevolution-calendar-importers.so,
209 libevolution-calendar.so,
210 libevolution-mail-composer.so,
211 libevolution-mail-formatter.so,
212 libevolution-mail-importers.so,
213 libevolution-mail.so,
214 libevolution-shell.so,
215 libevolution-smime.so,
216 libevolution-util.so,
217 libgnomecanvas.so,
218 and several modules and plugins in
219 /usr/lib/evolution/{modules,plugins,web-extensions}
220 </seg>
221 <seg>
222 /usr/include/evolution,
223 /usr/lib/evolution,
224 /usr/libexec/evolution,
225 /usr/share/evolution,
226 /usr/share/installed-tests/evolution,
227 /usr/share/help/*/evolution, and optionally
228 /usr/share/gtk-doc/html/{evolution-mail-composer,evolution-mail-engine},
229 /usr/share/gtk-doc/html/{evolution-mail-formatter,evolution-shell}, and
230 /usr/share/gtk-doc/html/evolution-util
231 </seg>
232 </seglistitem>
233 </segmentedlist>
234
235 <variablelist>
236 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
237 <?dbfo list-presentation="list"?>
238 <?dbhtml list-presentation="table"?>
239
240 <varlistentry id="evolution-prog">
241 <term><command>evolution</command></term>
242 <listitem>
243 <para>
244 is an email, calendar and address book suite for
245 the <application>GNOME</application> Desktop
246 </para>
247 <indexterm zone="evolution evolution-prog">
248 <primary sortas="b-evolution">evolution</primary>
249 </indexterm>
250 </listitem>
251 </varlistentry>
252
253 </variablelist>
254
255 </sect2>
256
257</sect1>
Note: See TracBrowser for help on using the repository browser.