source: kde5/applications/akonadi.xml@ 935b3e7

kde5-14686
Last change on this file since 935b3e7 was 935b3e7, checked in by Xi Ruoyao <xry111@…>, 3 years ago

kmix 5 and polkit-kde-agent 5. Fixes to other packages.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/kde5@14727 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 4.6 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
8<sect1 id="akonadi5" xreflabel="Akonadi-&akonadi5-version;">
9 <?dbhtml filename="akonadi.html"?>
10
11 <sect1info>
12 <othername>$LastChangedBy$</othername>
13 <date>$Date$</date>
14 </sect1info>
15
16 <title>Akonadi-&akonadi5-version;</title>
17
18 <indexterm zone="akonadi5">
19 <primary sortas="a-Akonadi">Akonadi</primary>
20 </indexterm>
21
22 <sect2 role="package">
23 <title>Introduction to Akonadi</title>
24
25 <para>
26 The <application>Akonadi</application> package contains a storage service
27 for personal information management (PIM) data and metadata.
28 </para>
29
30 &lfs76_checked;
31
32 <bridgehead renderas="sect3">Package Information</bridgehead>
33 <itemizedlist spacing="compact">
34 <listitem>
35 <para>
36 Download (HTTP): <ulink url="&akonadi5-download-http;"/>
37 </para>
38 </listitem>
39 <listitem>
40 <para>
41 Download (FTP): <ulink url="&akonadi5-download-ftp;"/>
42 </para>
43 </listitem>
44 <listitem>
45 <para>
46 Download MD5 sum: &akonadi5-md5sum;
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download size: &akonadi5-size;
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Estimated disk space required: &akonadi5-buildsize;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Estimated build time: &akonadi5-time;
62 </para>
63 </listitem>
64 </itemizedlist>
65
66 <bridgehead renderas="sect3">Akonadi Dependencies</bridgehead>
67
68 <bridgehead renderas="sect4">Required</bridgehead>
69 <para role="required">
70 <xref linkend="extra-cmake-modules"/>,
71 <xref linkend="mariadb"/>,
72 <xref linkend="qt5"/> and
73 <xref linkend="shared-mime-info"/>
74 </para>
75
76 <bridgehead renderas="sect4">Recommended</bridgehead>
77 <para role="recommended">
78 <xref linkend="sqlite"/>
79 </para>
80
81 <bridgehead renderas="sect4">Optional</bridgehead>
82 <para role="optional">
83 <xref linkend="postgresql"/>
84 </para>
85
86 <para condition="html" role="usernotes">
87 User Notes: <ulink url="&blfs-wiki;/akonadi5"/>
88 </para>
89 </sect2>
90
91 <sect2 role="installation">
92 <title>Installation of Akonadi</title>
93
94 <para>
95 Install <application>Akonadi</application> by running the following
96 commands:
97 </para>
98
99<screen><userinput>mkdir build &amp;&amp;
100cd build &amp;&amp;
101
102cmake -DCMAKE_INSTALL_PREFIX=$KF5_PREFIX \
103 -DCMAKE_BUILD_TYPE=Release \
104 -DSYSCONF_INSTALL_DIR=$KF5_SYSCONFDIR \
105 -DLIB_INSTALL_DIR=lib \
106 -DBUILD_TESTING=OFF \
107 .. &amp;&amp;
108make</userinput></screen>
109
110 <para>
111 This package does not come with a test suite.
112 </para>
113
114 <para>
115 Now, as the <systemitem class="username">root</systemitem> user:
116 </para>
117
118<screen role="root"><userinput>make install &amp;&amp;
119
120install -v -dm755 $KF5_PREFIX/lib/qt5/plugins/sqldrivers &amp;&amp;
121mv -v $KF5_PREFIX/lib/plugins/sqldrivers/* \
122 $KF5_PREFIX/lib/qt5/plugins/sqldrivers &amp;&amp;
123rm -rfv $KF5_PREFIX/lib/plugins</userinput></screen>
124
125 </sect2>
126
127 <sect2 role="commands">
128 <title>Command Explanations</title>
129
130 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
131 href="../../xincludes/cmake-release.xml"/>
132
133 <para>
134 <parameter>-DSYSCONF_INSTALL_DIR=$KF5_SYSCONFDIR</parameter>: This switch
135 is used to set correct XDG configuration directory.
136 </para>
137
138 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
139 href="../../xincludes/kf5-libdir.xml"/>
140
141 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
142 href="../../xincludes/kf5-tests.xml"/>
143
144 </sect2>
145
146 <sect2 role="content">
147 <title>Contents</title>
148
149 <segmentedlist>
150 <segtitle>Installed Programs</segtitle>
151 <segtitle>Installed Libraries</segtitle>
152 <segtitle>Installed Directories</segtitle>
153
154 <seglistitem>
155 <seg>
156 akonadi_agent_launcher, akonadi_agent_server, akonadi_control,
157 akonadictl, akonadi_rds, akonadiserver and asapcat
158 </seg>
159 <seg>
160 libKF5AkonadiPrivate.so
161 </seg>
162 <seg>
163 $KF5_PREFIX/include/KF5/akonadi and
164 $KF5_PREFIX/lib/cmake/KF5AkonadiServer
165 </seg>
166 </seglistitem>
167 </segmentedlist>
168
169 </sect2>
170
171</sect1>
Note: See TracBrowser for help on using the repository browser.