source: kde5/frameworks/kauth.xml@ 8e79872

kde5-14686 systemd-13485
Last change on this file since 8e79872 was 8e79872, checked in by Krejzi <krejzi@…>, 10 years ago

Updated to KDE Frameworks 5.3.0.

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

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