source: kde5/frameworks/kservice.xml@ 3899973

kde5-13430
Last change on this file since 3899973 was 3899973, checked in by Krejzi <krejzi@…>, 10 years ago

Create new kde5 branch (sorry Pierre) to merge latest kde 5 work with latest trunk.

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

  • Property mode set to 100644
File size: 4.5 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 <!ENTITY kservice-download-http "&kf5-download-http;/kservice-&kf5-version;.tar.xz">
8 <!ENTITY kservice-download-ftp "&kf5-download-ftp;/kservice-&kf5-version;.tar.xz">
9 <!ENTITY kservice-md5sum "6ae4142298331ca6085d3ecded6a02e2">
10 <!ENTITY kservice-size "2.8 MB">
11 <!ENTITY kservice-buildsize "33 MB">
12 <!ENTITY kservice-time "0.8 SBU">
13]>
14
15<sect1 id="kservice" xreflabel="KService-&kf5-version;">
16 <?dbhtml filename="kservice.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>KService-&kf5-version;</title>
24
25 <indexterm zone="kservice">
26 <primary sortas="a-KService">KService</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to KService</title>
31
32 <para>
33 The <application>KService</application> package contains a library
34 that provides a plugin framework for handling desktop services.
35 </para>
36
37 &lfs75_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>
43 Download (HTTP): <ulink url="&kservice-download-http;"/>
44 </para>
45 </listitem>
46 <listitem>
47 <para>
48 Download (FTP): <ulink url="&kservice-download-ftp;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download MD5 sum: &kservice-md5sum;
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download size: &kservice-size;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Estimated disk space required: &kservice-buildsize;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated build time: &kservice-time;
69 </para>
70 </listitem>
71 </itemizedlist>
72
73 <bridgehead renderas="sect3">KService Dependencies</bridgehead>
74
75 <bridgehead renderas="sect4">Required</bridgehead>
76 <para role="required">
77 <xref linkend="karchive"/>,
78 <xref linkend="kconfig"/>,
79 <xref linkend="kcrash"/>,
80 <xref linkend="kdbusaddons"/>,
81 <xref linkend="kdoctools"/> and
82 <xref linkend="ki18n"/>
83 </para>
84
85 <para condition="html" role="usernotes">
86 User Notes: <ulink url="&blfs-wiki;/kservice"/>
87 </para>
88 </sect2>
89
90 <sect2 role="installation">
91 <title>Installation of KService</title>
92
93 <para>
94 Install <application>KService</application> by running the following
95 commands:
96 </para>
97
98<screen><userinput>mkdir build &amp;&amp;
99cd build &amp;&amp;
100
101cmake -DCMAKE_INSTALL_PREFIX=$KF5_PREFIX \
102 -DCMAKE_BUILD_TYPE=Release \
103 -DSYSCONF_INSTALL_DIR=$KF5_SYSCONFDIR \
104 -DLIB_INSTALL_DIR=lib \
105 -DBUILD_TESTING=OFF \
106 -DECM_MKSPECS_INSTALL_DIR=&qt5-mkspecs-dir; \
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</userinput></screen>
119
120 </sect2>
121
122 <sect2 role="commands">
123 <title>Command Explanations</title>
124
125 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
126 href="../../xincludes/cmake-release.xml"/>
127
128 <para>
129 <parameter>-DSYSCONF_INSTALL_DIR=$KF5_SYSCONFDIR</parameter>: This switch
130 is used to set correct XDG configuration directory.
131 </para>
132
133 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
134 href="../../xincludes/kf5-libdir.xml"/>
135
136 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
137 href="../../xincludes/kf5-tests.xml"/>
138
139 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
140 href="../../xincludes/qt5-mkspecs-dir.xml"/>
141
142 </sect2>
143
144 <sect2 role="content">
145 <title>Contents</title>
146
147 <segmentedlist>
148 <segtitle>Installed Programs</segtitle>
149 <segtitle>Installed Libraries</segtitle>
150 <segtitle>Installed Directories</segtitle>
151
152 <seglistitem>
153 <seg>
154 desktoptojson and kbuildsycoca5
155 </seg>
156 <seg>
157 libKF5Service.so
158 </seg>
159 <seg>
160 $KF5_PREFIX/include/KF5/KService,
161 $KF5_PREFIX/lib/cmake/KF5Service and
162 $KF5_PREFIX/share/kservicetypes5
163 </seg>
164 </seglistitem>
165 </segmentedlist>
166
167 </sect2>
168
169</sect1>
Note: See TracBrowser for help on using the repository browser.