source: archive/kde/add/kdepim.xml@ a161de9

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 a161de9 was 556a307a, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

Move files to archive

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

  • Property mode set to 100644
File size: 11.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 <!ENTITY kdepim-download-http "&trinity-repo-http;/kdepim-&trinity-version;.tar.gz">
7 <!ENTITY kdepim-download-ftp "&trinity-repo-ftp;/kdepim-&trinity-version;.tar.gz">
8 <!ENTITY kdepim-md5sum "4488062d5400bdd99642fe0b72ebcf9a">
9 <!ENTITY kdepim-size "12.8 MB">
10 <!ENTITY kdepim-buildsize "347 MB">
11 <!ENTITY kdepim-time "6.4 SBU">
12]>
13
14<sect1 id="kdepim" xreflabel="kdepim-&trinity-version;">
15 <?dbhtml filename="kdepim.html"?>
16
17 <sect1info>
18 <othername>$LastChangedBy$</othername>
19 <date>$Date$</date>
20 </sect1info>
21
22 <title>Kdepim-&trinity-version;</title>
23
24 <indexterm zone="kdepim">
25 <primary sortas="a-kdepim">Kdepim</primary>
26 </indexterm>
27
28 <sect2 role="package">
29 <title>Introduction to Kdepim</title>
30
31 <para><application>Kdepim</application> provides several
32 <application>KDE</application> programs for managing personal information.
33 Programs include a contact manager, calendar, mail utilities, newsreader,
34 X.509 certificate manager, and sticky notes.</para>
35
36 &lfs70_checked;
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing='compact'>
40 <listitem>
41 <para>Download (HTTP): <ulink url="&kdepim-download-http;"/></para>
42 </listitem>
43 <listitem>
44 <para>Download (FTP): <ulink url="&kdepim-download-ftp;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download MD5 sum: &kdepim-md5sum;</para>
48 </listitem>
49 <listitem>
50 <para>Download size: &kdepim-size;</para>
51 </listitem>
52 <listitem>
53 <para>Estimated disk space required: &kdepim-buildsize;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated build time: &kdepim-time;</para>
57 </listitem>
58 </itemizedlist>
59
60 <!--
61 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
62 <itemizedlist spacing="compact">
63 <listitem>
64 <para>Required patch: <ulink
65 url="&patch-root;/kdepim-&kde-version;-charset-1.patch"/></para>
66 </listitem>
67 </itemizedlist>
68 -->
69
70 <bridgehead renderas="sect3">Kdepim Dependencies</bridgehead>
71
72 <bridgehead renderas="sect4">Required</bridgehead>
73 <para role="required">
74 <xref linkend="kdebase"/>
75 </para>
76
77 <bridgehead renderas="sect4">Recommended</bridgehead>
78 <para role="recommended">
79 <xref linkend="libjpeg"/>,
80 <xref linkend="libxml2"/>,
81 <xref linkend="gnupg2"/>, and
82 <xref linkend="openssl"/>
83 </para>
84
85 <bridgehead renderas="sect4">Optional</bridgehead>
86 <para role="optional">
87 <xref linkend="kdeaccessibility"/>,
88 <xref linkend="kdemultimedia"/>,
89 <xref linkend="cyrus-sasl"/>,
90 <xref linkend="pilot-link"/>,
91 <xref linkend="gnupg"/> or
92 <xref linkend="gpgme"/>,
93 <ulink url="http://www.opensync.org">OpenSync</ulink>,
94 <ulink url="http://jasonday.home.att.net/code/libmal/libmal.html">libmal</ulink>,
95 <ulink url="http://www.gnokii.org/">gnokii</ulink>,
96 <ulink url="http://www.bluez.org">BlueZ</ulink>,
97 <xref linkend="boost"/>,
98 <xref linkend="graphviz"/>, and
99 <xref linkend="doxygen"/>
100 </para>
101
102 <para condition="html" role="usernotes">User Notes:
103 <ulink url="&blfs-wiki;/kdepim"/></para>
104
105 </sect2>
106
107 <sect2 role="installation">
108 <title>Installation of Kdepim</title>
109
110 <para>Install <application>kdepim</application> with:</para>
111
112<screen><userinput>MAKEDIR=/tmp/buildpim &amp;&amp;
113KDEPIM=`pwd` &amp;&amp;
114rm -rf $MAKEDIR &amp;&amp;
115mkdir -p $MAKEDIR &amp;&amp;
116cd $MAKEDIR &amp;&amp;
117
118cmake -DCMAKE_INSTALL_PREFIX=$TRINITY_PREFIX \
119 -DCMAKE_VERBOSE_MAKEFILE=ON \
120 -DWITH_ARTS=ON \
121 -DBUILD_ALL=ON \
122 -DBUILD_INDEXLIB=OFF \
123 $KDEPIM &amp;&amp;
124
125unset KDEPIM MAKEDIR &amp;&amp;
126make</userinput></screen>
127
128 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
129 href="../../xincludes/kde-apidocs.xml"/>
130
131 <para>This package does not come with a test suite.</para>
132
133 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
134
135<screen role="root"><userinput>make install</userinput></screen>
136
137 </sect2>
138
139 <sect2 role="commands">
140 <title>Command Explanations</title>
141
142 <para><option>-DBUILD_INDEXLIB=OFF</option>: This option requires
143 <ulink url="http://www.boost.org">Boost</ulink>.</para>
144
145 </sect2>
146
147 <sect2 role="content">
148 <title>Contents</title>
149
150 <segmentedlist>
151 <segtitle>Installed Programs</segtitle>
152 <segtitle>Installed Libraries</segtitle>
153 <segtitle>Installed Directories</segtitle>
154
155 <seglistitem>
156 <seg>akregator, kaddressbook, kalarm, kandy, karm,
157 kitchensync, kleopatra, kmail, knode, knotes, konsolekalendar,
158 kontact, korganizer, korn, kpilot,
159 ktnef, kwatchgnupg, and supporting programs</seg>
160 <seg>Numerous kdepim specific libraries</seg>
161 <seg>Numerous subdirectories in $KDE_PREFIX/{include,share}</seg>
162 </seglistitem>
163 </segmentedlist>
164
165 <variablelist>
166 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
167 <?dbfo list-presentation="list"?>
168 <?dbhtml list-presentation="table"?>
169
170 <varlistentry id="akregator">
171 <term><command>akregator</command></term>
172 <listitem>
173 <para>is a program to read <acronym>RSS</acronym> and
174 other online news feeds.</para>
175 <indexterm zone="kdepim akregator">
176 <primary sortas="b-akregator">akregator</primary>
177 </indexterm>
178 </listitem>
179 </varlistentry>
180
181 <varlistentry id="kaddressbook">
182 <term><command>kaddressbook</command></term>
183 <listitem>
184 <para>is the <application>KDE</application> address book.</para>
185 <indexterm zone="kdepim kaddressbook">
186 <primary sortas="b-kaddressbook">kaddressbook</primary>
187 </indexterm>
188 </listitem>
189 </varlistentry>
190
191 <varlistentry id="kalarm">
192 <term><command>kalarm</command></term>
193 <listitem>
194 <para>is a system to provide reminder messages.</para>
195 <indexterm zone="kdepim kalarm">
196 <primary sortas="b-kalarm">kalarm</primary>
197 </indexterm>
198 </listitem>
199 </varlistentry>
200
201 <varlistentry id="kandy">
202 <term><command>kandy</command></term>
203 <listitem>
204 <para>is a program to synchronize mobile phone numbers.</para>
205 <indexterm zone="kdepim kandy">
206 <primary sortas="b-kandy">kandy</primary>
207 </indexterm>
208 </listitem>
209 </varlistentry>
210
211 <varlistentry id="karm">
212 <term><command>karm</command></term>
213 <listitem>
214 <para> is a personal time tracker.</para>
215 <indexterm zone="kdepim karm">
216 <primary sortas="b-karm">karm</primary>
217 </indexterm>
218 </listitem>
219 </varlistentry>
220
221 <varlistentry id="kitchensync">
222 <term><command>kitchensync</command></term>
223 <listitem>
224 <para>is the universal syncing tool and framework for kde.</para>
225 <indexterm zone="kdepim kitchensync">
226 <primary sortas="b-kitchensync">kitchensync</primary>
227 </indexterm>
228 </listitem>
229 </varlistentry>
230
231 <varlistentry id="kleopatra">
232 <term><command>kleopatra</command></term>
233 <listitem>
234 <para>is a tool for managing X.509 certificates in
235 a <application>GpgSM</application> keybox and for retrieving
236 certificates from <acronym>LDAP</acronym> servers.</para>
237 <indexterm zone="kdepim kleopatra">
238 <primary sortas="b-kleopatra">kleopatra</primary>
239 </indexterm>
240 </listitem>
241 </varlistentry>
242
243 <varlistentry id="kmail">
244 <term><command>kmail</command></term>
245 <listitem>
246 <para>is <application>KDE</application>'s email client.</para>
247 <indexterm zone="kdepim kmail">
248 <primary sortas="b-kmail">kmail</primary>
249 </indexterm>
250 </listitem>
251 </varlistentry>
252
253 <varlistentry id="knode">
254 <term><command>knode</command></term>
255 <listitem>
256 <para> is the <application>KDE</application> newsreader.</para>
257 <indexterm zone="kdepim knode">
258 <primary sortas="b-knode">knode</primary>
259 </indexterm>
260 </listitem>
261 </varlistentry>
262
263 <varlistentry id="knotes">
264 <term><command>knotes</command></term>
265 <listitem>
266 <para> is a popup notes utility.</para>
267 <indexterm zone="kdepim knotes">
268 <primary sortas="b-knotes">knotes</primary>
269 </indexterm>
270 </listitem>
271 </varlistentry>
272
273 <varlistentry id="konsolekalendar">
274 <term><command>konsolekalendar</command></term>
275 <listitem>
276 <para>is a command line interface to <application>KDE</application>
277 calendars.</para>
278 <indexterm zone="kdepim konsolekalendar">
279 <primary sortas="b-konsolekalendar">konsolekalendar</primary>
280 </indexterm>
281 </listitem>
282 </varlistentry>
283
284 <varlistentry id="kontact">
285 <term><command>kontact</command></term>
286 <listitem>
287 <para>is the integrated solution to personal information management
288 (PIM) needs.</para>
289 <indexterm zone="kdepim kontact">
290 <primary sortas="b-kontact">kontact</primary>
291 </indexterm>
292 </listitem>
293 </varlistentry>
294
295 <varlistentry id="korganizer">
296 <term><command>korganizer</command></term>
297 <listitem>
298 <para>is a personal calendar/todo system.</para>
299 <indexterm zone="kdepim korganizer">
300 <primary sortas="b-korganizer">korganizer</primary>
301 </indexterm>
302 </listitem>
303 </varlistentry>
304
305 <varlistentry id="korn">
306 <term><command>korn</command></term>
307 <listitem>
308 <para>is a <application>KDE</application> mail checker that has the capabilities to
309 dock itself to <command>kicker</command>.</para>
310 <indexterm zone="kdepim korn">
311 <primary sortas="b-korn">korn</primary>
312 </indexterm>
313 </listitem>
314 </varlistentry>
315
316 <varlistentry id="kpilot">
317 <term><command>kpilot</command></term>
318 <listitem>
319 <para>is a program to synchronize a Palm-Pilot.</para>
320 <indexterm zone="kdepim kpilot">
321 <primary sortas="b-kpilot">kpilot</primary>
322 </indexterm>
323 </listitem>
324 </varlistentry>
325
326 <varlistentry id="ktnef">
327 <term><command>ktnef</command></term>
328 <listitem>
329 <para>allows handling mail attachments using the TNEF format.
330 Those attachments are usually found in mails coming
331 from <trademark class="registered">Microsoft</trademark>
332 mail servers and embed the mail properties as well as the
333 actual attachments.</para>
334 <indexterm zone="kdepim ktnef">
335 <primary sortas="b-ktnef">ktnef</primary>
336 </indexterm>
337 </listitem>
338 </varlistentry>
339
340 <varlistentry id="kwatchgnupg">
341 <term><command>kwatchgnupg</command></term>
342 <listitem>
343 <para>is simple<application>GnuPG</application> log viewer.</para>
344 <indexterm zone="kdepim kwatchgnupg">
345 <primary sortas="b-kwatchgnupg">kwatchgnupg</primary>
346 </indexterm>
347 </listitem>
348 </varlistentry>
349
350 </variablelist>
351
352 </sect2>
353
354</sect1>
Note: See TracBrowser for help on using the repository browser.