source: kde/plasma5/plasma-all.xml@ 316a7a46

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules 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 316a7a46 was 460cec4b, checked in by Bruce Dubbs <bdubbs@…>, 8 years ago

Update to plasma-5.5.2

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@16769 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 chapter 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 plasma5-download-http "http://download.kde.org/stable/plasma/&plasma5-version;">
8 <!ENTITY plasma5-download-ftp " ">
9 <!ENTITY plasma5-md5sum "See Below">
10 <!ENTITY plasma5-size "105 MB">
11 <!ENTITY plasma5-buildsize "933 GB">
12 <!ENTITY plasma5-time "10.3 SBU (using parallelism=6)">
13]>
14
15<sect1 id="plasma5-build" xreflabel="Plasma-&plasma5-version;">
16 <?dbhtml filename="plasma-all.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy: bdubbs $</othername>
20 <date>$Date: 2015-09-24 16:44:04 -0500 (Thu, 24 Sep 2015) $</date>
21 </sect1info>
22
23 <title>Building Plasma 5</title>
24
25 <indexterm zone="plasma5-build">
26 <primary sortas="a-kf5">KDE Plasma 5</primary>
27 </indexterm>
28
29 <para>KDE Plasma 5 is a collection of packages based on top of KDE Frameworks
30 5 and QML. It has been derived from the monolithic KDE 4 desktop.
31 They implement the KDE Display Environment (Plasma 5).</para>
32
33 &lfs78_checked;
34
35 <para>The instructions below build all of the Plasma 5 packages in one
36 step by using a bash script.</para>
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>Download (HTTP): <ulink url="&plasma5-download-http;"/></para>
42 </listitem>
43 <listitem>
44 <para>Download (FTP): <ulink url="&plasma5-download-ftp;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download MD5 sum: &plasma5-md5sum;</para>
48 </listitem>
49 <listitem>
50 <para>Download size: &plasma5-size;</para>
51 </listitem>
52 <listitem>
53 <para>Estimated disk space required: &plasma5-buildsize;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated build time: &plasma5-time;</para>
57 </listitem>
58 </itemizedlist>
59
60 <bridgehead renderas="sect3">Plasma 5 Dependencies</bridgehead>
61
62 <bridgehead renderas="sect4">Required</bridgehead>
63 <para role="required">
64 <xref linkend="fontforge"/>,
65 <xref linkend="gtk2"/>,
66 <xref linkend="gtk3"/>,
67 <xref linkend="kf5-frameworks"/>,
68 <xref linkend="libpwquality"/>,
69 <xref linkend="libxkbcommon"/>,
70 <xref linkend="mesa"/> built with <xref linkend="wayland"/>,
71 <xref linkend="NetworkManager"/>,
72 <xref linkend="pulseaudio"/>,
73 <xref linkend="python2"/>,
74 <xref linkend="qca"/> (built with qt5),
75 <xref linkend="taglib"/>, and
76 <xref linkend="xcb-util-cursor"/>
77 </para>
78
79 <bridgehead renderas="sect4">Recommended</bridgehead>
80 <para role="recommended">
81 <xref linkend="libdbusmenu-qt"/>,
82 <xref linkend="libcanberra"/>,
83 <xref linkend="libinput"/>,
84 <xref linkend="linux-pam"/>,
85 <xref linkend="lm_sensors"/>,
86 <xref linkend="oxygen-icons"/>, and
87 <xref linkend="pciutils"/>
88 </para>
89
90 <bridgehead renderas="sect4">Optional</bridgehead>
91 <para role="optional">
92 <xref linkend="glu"/>,
93 <xref linkend="xorg-synaptics-driver"/>,
94 <ulink url="https://github.com/ibus/ibus/wiki">ibus</ulink>,
95 <ulink url="http://gpsd.berlios.de">libgps</ulink>,
96 <ulink url="https://github.com/libhybris/libhybris">libhybris</ulink>,
97 <ulink url="http://sourceforge.net/projects/libraw1394/">libraw1394</ulink>,
98 <ulink url="https://bitbucket.org/godsme/mockcpp">mockcpp</ulink>,
99 <ulink url="http://qalculate.sourceforge.net">Qalculate</ulink>,
100 <ulink url="https://launchpad.net/qapt">Qapt</ulink>, and
101 <ulink url="https://github.com/osiam/osiam">SCIM</ulink>
102 </para>
103
104 <para condition="html" role="usernotes">User Notes:
105 <ulink url="&blfs-wiki;/kf5"/></para>
106
107 <sect2>
108 <title>Downloading KDE Plasma5</title>
109
110 <para>
111 The easiest way to get the KDE Plasma5 packages is to use a single
112 <command>wget</command> to fetch them all at once:
113 </para>
114
115<screen><userinput>url=http://download.kde.org/stable/plasma/&plasma5-version;/
116wget -r -nH --cut-dirs=3 -A '*.xz' -np $url</userinput>
117<literal>
118The options used here are:
119 -r recurse through child directories
120 -nH disable generation of host-prefixed directories
121 --cut-dirs=3 remove three levels of directories when saving
122 -A '*.xz' just get the *.xz files
123 -np don't get parent directories</literal></screen>
124
125 </sect2>
126
127 <sect2>
128 <title>Setting Package Order</title>
129
130 <para>
131 The order of building files is important due to internal dependencies.
132 Create the list of files in the proper order as follows:
133 </para>
134
135<screen><userinput>cat &gt; plasma-&kf5-version;.md5 &lt;&lt; "EOF"
136<literal>576329ff65059207cdee5deccd9a165f kde-cli-tools-5.5.2.tar.xz
137da8c7212276a5517228b19d6e1e54a84 kdecoration-5.5.2.tar.xz
13837bb221f5c7bb9c1217f0508c4fc1d73 kwayland-5.5.2.tar.xz
1396c26b862372589803128265b86d6f43e libkscreen-5.5.2.tar.xz
14081bb3054dbb065dac30895e14917183a libksysguard-5.5.2.tar.xz
14184a0914f9b1934331ea76919aa93f0b1 breeze-5.5.2.tar.xz
14233687a70066f008b3e5e14a05dfcbf8c breeze-gtk-5.5.2.tar.xz
143281c413dbf9c961cb4473303d853a40a kscreenlocker-5.5.2.tar.xz
144f948faf05efa8b65743064c9d3811195 oxygen-5.5.2.tar.xz
145241a4b23e0972627b44413677bed97fa khelpcenter-5.5.2.tar.xz
146ead59c968f1acadfc89ef1e8f480a39d kinfocenter-5.5.2.tar.xz
1472e1f2397c472fbd0b9e4749ab7e5c0c5 ksysguard-5.5.2.tar.xz
148c7f98f0942321b941e95510a28fe93fd kwin-5.5.2.tar.xz
14946679e17561706eb9db4eb91450f6dab systemsettings-5.5.2.tar.xz
150771be8128b03bc50d79b3579e631ae15 plasma-workspace-5.5.2.tar.xz
15135c3a9161463f7e7cde5557f84a4eb34 bluedevil-5.5.2.tar.xz
152407295fcb70e14fe87ca81548c6d0b66 kde-gtk-config-5.5.2.tar.xz
153242b9852138648b49b2cc99a8289f04f khotkeys-5.5.2.tar.xz
154d00d376d78744a03da702c41c0259a42 kmenuedit-5.5.2.tar.xz
1557e10901e7ffad02d92085f6bac723919 kscreen-5.5.2.tar.xz
15655140370797b55ad512d8e34ba507e37 kwallet-pam-5.5.2.tar.xz
15760b3e75ba7f6a113275a4404465668ba kwayland-integration-5.5.2.tar.xz
158b2b75def15c726e2281031d65924ad50 kwrited-5.5.2.tar.xz
15923193397ab2d13cdd734762ed9daffde milou-5.5.2.tar.xz
16009ff155a6e761cc5735618a2b2c251d2 plasma-nm-5.5.2.tar.xz
1617235e208dd1a17e337e1dfae71f8682d plasma-pa-5.5.2.tar.xz
162f4c2c5772be2b2603975098978720f03 plasma-workspace-wallpapers-5.5.2.tar.xz
16395847e72b23e60c55ba9d1e80e4e0cc9 polkit-kde-agent-1-5.5.2.tar.xz
164355ded80da3065388bdb3181936e835f powerdevil-5.5.2.tar.xz
165be58ab47cb66b25b0f00561c110d9ce6 plasma-desktop-5.5.2.tar.xz
166f034aaecd22771bd8dde8a102973543e kdeplasma-addons-5.5.2.tar.xz
1677e24a1842c1c4cbda6d43fb560de05d1 kgamma5-5.5.2.tar.xz
16801af6e4211c3f32b8c8def2db2db9229 ksshaskpass-5.5.2.tar.xz
1696baa57137e8cf61e96b8eb2a10682732 plasma-mediacenter-5.5.2.tar.xz
17073a899be6081f7fb174eaa54c648dd32 plasma-sdk-5.5.2.tar.xz
1714e0ecdcbf31607acf649abea01ac8edc sddm-kcm-5.5.2.tar.xz
1720886701ff82b393e3797476a18a88290 user-manager-5.5.2.tar.xz
1733fdfa39b7f6b4475e9f434bde5bc8184 discover-5.5.2.tar.xz</literal>
174EOF</userinput></screen>
175
176 </sect2>
177
178 <sect2 role="installation">
179 <title>Installation of Plasma5</title>
180
181 &as_root;
182
183 <para>
184 First, start a subshell that will exit on error:
185 </para>
186
187
188<screen><userinput>bash -e</userinput></screen>
189
190 <para>
191 Install all of the packages by running the following
192 commands:
193 </para>
194
195<screen><userinput>while read -r line; do
196
197 # Get the file name, ignoring comments and blank lines
198 if $(echo $line | grep -E -q '^ *$|^#' ); then continue; fi
199 file=$(echo $line | cut -d" " -f2)
200
201 pkg=$(echo $file|sed 's|^.*/||') # Remove directory
202 packagedir=$(echo $pkg|sed 's|\.tar.*||') # Package directory
203
204 tar -xf $file
205 pushd $packagedir
206
207 mkdir build
208 cd build
209
210 OPTS=""
211
212 case $srcdir in
213 kwayland-&plasma5-version; )
214 OPTS="-DECM_MKSPECS_INSTALL_DIR=$KF5_PREFIX/share/mkspecs/modules"
215 ;;
216 esac
217
218 cmake -DCMAKE_INSTALL_PREFIX=$KF5_PREFIX \
219 -DCMAKE_BUILD_TYPE=Release \
220 -DLIB_INSTALL_DIR=lib \
221 -DBUILD_TESTING=OFF \
222 $OPTS \
223 -Wno-dev .. &amp;&amp;
224
225 make
226 as_root make install
227 popd
228
229 rm -rf $packagedir
230 as_root /sbin/ldconfig
231
232done &lt; plasma-&kf5-version;.md5
233
234exit
235
236cd $KF5_PREFIX/share/plasma/plasmoids
237
238for j in $(find -name \*.js); do
239 as_root ln -sfv ../code/$(basename $j) $(dirname $j)/../ui/
240done</userinput></screen>
241
242 </sect2>
243
244 <sect2 role="commands">
245 <title>Command Explanations</title>
246
247 <para>
248 <command>ln -sfv ../code/$(basename $j) $(dirname $j)/../ui/</command>:
249 Create symbolic links so qml files can find needed javascript modules.
250 </para>
251
252 </sect2>
253 <sect2 role="starting">
254 <title>Starting Plasma5</title>
255
256 <caution>
257 <para>If you have KDE4 installed as well as Plasma 5, make sure the
258 PATH environment setting has the Plasma 5 binaries before the KDE4 entry.
259 You can ensure this by running:</para>
260
261 <screen><userinput>pathprepend /opt/kf5/bin</userinput></screen>
262
263 <para>before running startx.</para>
264 </caution>
265
266 <para>
267 You can start <application>Plasma5</application> from runlevel 3, using
268 <xref linkend="xinit"/>, or from runlevel 5, using a Display Manager,
269 such as <xref linkend="sddm"/>.
270 </para>
271
272 <para>
273 To start <application>Plasma 5</application> using <xref linkend="xinit"/>,
274 run the following commands:
275 </para>
276
277<screen><userinput>cat &gt; ~/.xinitrc &lt;&lt; "EOF"
278<literal>ck-launch-session dbus-launch --exit-with-session $KF5_PREFIX/bin/startkde</literal>
279EOF
280
281startx</userinput></screen>
282
283 <para>
284 The X session starts on the first unused virtual terminal, normally vt7.
285 You can switch to another vt<emphasis>n</emphasis> simultaneously
286 pressing the keys Ctrl-Alt-F<emphasis>n</emphasis>
287 (<emphasis>n</emphasis>=1, 2, ...). To switch back to the X session,
288 normally started at vt7, use Ctrl-Alt-F7. The vt where the command
289 <command>startx</command> was executed will display many messages,
290 including X starting messages, applications automatically started with
291 the session, and eventually, some warning and error messages. You may
292 prefer to redirect those messages to a log file, which not only will keep
293 the initial vt uncluttered, but can also be used for debugging purposes. This
294 can be done starting X with:
295 </para>
296
297 <screen><userinput>startx &amp;&gt; ~/.x-session-errors</userinput></screen>
298
299 <note>
300 <para>
301 You may wish to drop consolekit and/or dbus-launch, e.g., just using
302 startkde in ~/.xinitrc. However some capabilities such as mounting or
303 umounting file systems from a file manager will not be possible, or the
304 reboot option may be absent or inoperative, among other problems.
305 </para>
306 </note>
307 <para>
308 When shutting down or rebooting, the shutdown messages appear on the vt
309 where X was running. If you wish to see those messages, simultaneously
310 press keys Alt-F7 (assuming that X was running on vt7).
311 </para>
312
313 </sect2>
314
315 <sect2 role="content">
316 <title>Contents</title>
317
318 <segmentedlist>
319 <segtitle>Installed Programs</segtitle>
320 <segtitle>Installed Libraries</segtitle>
321 <segtitle>Installed Directories</segtitle>
322
323 <seglistitem>
324 <seg>
325 There are too many plasma programs (50 in /opt/kf5/bin) to list
326 separately here.
327 </seg>
328 <seg>
329 There are too many plasma libraries (39 in /opt/kf5/lib) to list
330 separately here.
331 </seg>
332 <seg>
333 There are too many plasma directories (over 1000 in /opt/kf5) to
334 list separately here.
335 </seg>
336 </seglistitem>
337 </segmentedlist>
338
339 </sect2>
340
341</sect1>
342
Note: See TracBrowser for help on using the repository browser.