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 kf5-download-http "&kf5-download-http;">
|
---|
8 | <!ENTITY kf5-download-ftp "&kf5e-download-ftp;">
|
---|
9 | <!ENTITY kf5-md5sum "See Below">
|
---|
10 | <!ENTITY kf5-size "30 MB">
|
---|
11 | <!ENTITY kf5-buildsize "11.7 MB">
|
---|
12 | <!ENTITY kf5-time "0.4 SBU">
|
---|
13 | ]>
|
---|
14 |
|
---|
15 | <sect1 id="kf5-intro" xreflabel="Introduction to KF5">
|
---|
16 | <?dbhtml filename="kf5-intro.html"?>
|
---|
17 |
|
---|
18 | <sect1info>
|
---|
19 | <othername>$LastChangedBy$</othername>
|
---|
20 | <date>$Date$</date>
|
---|
21 | </sect1info>
|
---|
22 |
|
---|
23 | <title>KDE Frameworks 5 Pre-installation Configuration</title>
|
---|
24 |
|
---|
25 | <indexterm zone="kf5">
|
---|
26 | <primary sortas="a-kf5">KDE Frameworks</primary>
|
---|
27 | </indexterm>
|
---|
28 |
|
---|
29 | <para>KF5 can be installed in /usr or /opt/kf5. The BLFS editors
|
---|
30 | recommend the latter in the BLFS environment.
|
---|
31 | </para>
|
---|
32 |
|
---|
33 | <sect2>
|
---|
34 | <title>Installing in /usr</title>
|
---|
35 |
|
---|
36 | <para>
|
---|
37 | One option is to install <application>KDE Frameworks 5</application>
|
---|
38 | into the <filename class="directory">/usr</filename> hierarchy.
|
---|
39 | This creates a simpler setup but makes it more difficult to try
|
---|
40 | multiple versions of <application>KDE Frameworks</application>.
|
---|
41 | </para>
|
---|
42 |
|
---|
43 | <screen><userinput>export KF5_PREFIX=/usr</userinput></screen>
|
---|
44 |
|
---|
45 | <para>
|
---|
46 | It is a good idea to add the following variables to your
|
---|
47 | system or personal profiles:
|
---|
48 | </para>
|
---|
49 |
|
---|
50 | <screen role="root"><userinput>cat >> /etc/profile.d/qt5.sh << "EOF"
|
---|
51 | <literal># Begin kf5 extention for /etc/profile.d/qt5.sh
|
---|
52 |
|
---|
53 | pathappend /usr/lib/qt5/plugins QT_PLUGIN_PATH
|
---|
54 | pathappend $QT5DIR/lib/plugins QT_PLUGIN_PATH
|
---|
55 |
|
---|
56 | pathappend /usr/lib/qt5/qml QML2_IMPORT_PATH
|
---|
57 | pathappend $QT5DIR/lib/qml QML2_IMPORT_PATH
|
---|
58 |
|
---|
59 | # End extention for /etc/profile.d/qt5.sh</literal>
|
---|
60 | EOF
|
---|
61 |
|
---|
62 | cat > /etc/profile.d/kf5.sh << "EOF"
|
---|
63 | <literal># Begin /etc/profile.d/kf5.sh
|
---|
64 |
|
---|
65 | export KF5_PREFIX=/usr
|
---|
66 |
|
---|
67 | # End /etc/profile.d/kf5.sh</literal>
|
---|
68 | EOF</userinput></screen>
|
---|
69 |
|
---|
70 | <note><para>If <application>qt5</application> was installed in /usr, the
|
---|
71 | $QT5DIR/lib/ portions of the above paths may need to be changed to
|
---|
72 | $QT5DIR/lib/qt5/.</para></note>
|
---|
73 |
|
---|
74 | <warning>
|
---|
75 | <para>
|
---|
76 | If <application>KDE4</application> is installed in
|
---|
77 | <filename class="directory">/usr</filename>, some packages
|
---|
78 | from this chapter might overwrite some programs installed
|
---|
79 | by <application>KDE4</application> packages.
|
---|
80 | </para>
|
---|
81 | </warning>
|
---|
82 |
|
---|
83 | </sect2>
|
---|
84 |
|
---|
85 | <sect2>
|
---|
86 | <title>Installing in /opt</title>
|
---|
87 |
|
---|
88 | <para>
|
---|
89 | A method of building multiple versions installs
|
---|
90 | <application>KDE Frameworks 5</application> in the
|
---|
91 | <filename class="directory">/opt</filename> hierarchy:
|
---|
92 | </para>
|
---|
93 |
|
---|
94 | <screen><userinput>export KF5_PREFIX=/opt/kf5</userinput></screen>
|
---|
95 |
|
---|
96 | <para>
|
---|
97 | If you are not installing <application>KDE Frameworks 5</application>
|
---|
98 | in <filename class="directory">/usr</filename>, you will need to
|
---|
99 | make some additional configuration changes. Best practice is to add
|
---|
100 | those to your system or personal profile:
|
---|
101 | </para>
|
---|
102 |
|
---|
103 | <screen role="root"><userinput>cat > /etc/profile.d/kf5.sh << "EOF"
|
---|
104 | <literal># Begin /etc/profile.d/kf5.sh
|
---|
105 |
|
---|
106 | export KF5_PREFIX=/opt/kf5
|
---|
107 |
|
---|
108 | pathappend $KF5_PREFIX/bin PATH
|
---|
109 | pathappend $KF5_PREFIX/lib/pkgconfig PKG_CONFIG_PATH
|
---|
110 |
|
---|
111 | pathappend /etc/xdg XDG_CONFIG_DIRS
|
---|
112 | pathappend $KF5_PREFIX/etc/xdg XDG_CONFIG_DIRS
|
---|
113 | pathappend /usr/share XDG_DATA_DIRS
|
---|
114 | pathappend $KF5_PREFIX/share XDG_DATA_DIRS
|
---|
115 |
|
---|
116 | pathappend $KF5_PREFIX/lib/plugins QT_PLUGIN_PATH
|
---|
117 |
|
---|
118 | pathappend $KF5_PREFIX/lib/qml QML2_IMPORT_PATH
|
---|
119 |
|
---|
120 | pathappend $KF5_PREFIX/lib/python&python2-majorver;/site-packages PYTHONPATH
|
---|
121 | # End /etc/profile.d/kf5.sh</literal>
|
---|
122 | EOF
|
---|
123 |
|
---|
124 | cat > /etc/profile.d/qt5.sh << "EOF"
|
---|
125 | <literal># Begin /etc/profile.d/kf5.sh
|
---|
126 | # Begin Qt5 changes for KF5
|
---|
127 |
|
---|
128 | pathappend $QT5DIR/plugins QT_PLUGIN_PATH
|
---|
129 | pathappend $QT5DIR/qml QML2_IMPORT_PATH
|
---|
130 |
|
---|
131 | # End Qt5 changes for KF5</literal>
|
---|
132 | EOF</userinput></screen>
|
---|
133 |
|
---|
134 | <para>
|
---|
135 | Expand your <filename>/etc/ld.so.conf</filename> file:
|
---|
136 | </para>
|
---|
137 |
|
---|
138 | <screen role="root"><userinput>cat >> /etc/ld.so.conf << "EOF"
|
---|
139 | <literal># Begin KF5 addition
|
---|
140 |
|
---|
141 | /opt/kf5/lib
|
---|
142 |
|
---|
143 | # End KF5 addition</literal>
|
---|
144 | EOF</userinput></screen>
|
---|
145 |
|
---|
146 | <indexterm zone="kf5-intro">
|
---|
147 | <primary sortas="e-etc-ld.so.conf">/etc/ld.so.conf</primary>
|
---|
148 | </indexterm>
|
---|
149 |
|
---|
150 | <para>
|
---|
151 | Several <application>KDE Frameworks 5</application> packages install
|
---|
152 | files into <application>D-Bus</application> directories. When installing
|
---|
153 | <application>KDE Frameworks 5</application> in a location other than
|
---|
154 | <filename class="directory">/usr</filename>,
|
---|
155 | <application>D-Bus</application> needs to be able to find these files.
|
---|
156 | The easiest way to achieve this is to create the following symlinks (as
|
---|
157 | the <systemitem class="username">root</systemitem> user):
|
---|
158 | </para>
|
---|
159 |
|
---|
160 | <screen role="root"><userinput>install -v -dm755 $KF5_PREFIX/{etc,share} &&
|
---|
161 | ln -sfv /etc/dbus-1 $KF5_PREFIX/etc &&
|
---|
162 | ln -sfv /usr/share/dbus-1 $KF5_PREFIX/share</userinput></screen>
|
---|
163 |
|
---|
164 | <para>
|
---|
165 | Some packages may also install icons from the "hicolor" icon set. Since that
|
---|
166 | icon set is used by many packages, it is a good idea to create a
|
---|
167 | symlink to the one in <filename class="directory">/usr/share</filename>
|
---|
168 | to avoid having multiple installations of <xref linkend="hicolor-icon-theme"/>.
|
---|
169 | Run the following commands as the <systemitem class="username">root</systemitem>
|
---|
170 | user:
|
---|
171 | </para>
|
---|
172 |
|
---|
173 | <screen role="root"><userinput>install -v -dm755 $KF5_PREFIX/share/icons &&
|
---|
174 | ln -sfv /usr/share/icons/hicolor $KF5_PREFIX/share/icons</userinput></screen>
|
---|
175 |
|
---|
176 | <tip>
|
---|
177 | <para>
|
---|
178 | Sometimes, the installation paths are hardcoded into installed files.
|
---|
179 | This is the reason why <filename class="directory">/opt/kf5</filename>
|
---|
180 | is used as installation prefix instead of <filename
|
---|
181 | class="directory">/opt/kf5-&kf5-version;</filename>. After installing
|
---|
182 | <application>KDE Frameworks</application>, you may rename the directory
|
---|
183 | and create a symlink:
|
---|
184 | </para>
|
---|
185 |
|
---|
186 | <screen role="root"><userinput>mv /opt/kf5{,-&kf5-version;}
|
---|
187 | ln -sfv kf5-&kf5-version; /opt/kf5</userinput></screen>
|
---|
188 |
|
---|
189 | <para>
|
---|
190 | Later on, you may want to install other versions of
|
---|
191 | <application>KDE Frameworks 5</application>. To do that, just remove
|
---|
192 | the symlink and use <filename class="directory">/opt/kf5</filename>
|
---|
193 | as the prefix again. Which version of
|
---|
194 | <application>KDE Frameworks 5</application> you use depends only on
|
---|
195 | where the symlink points. No other reconfiguration will be needed.
|
---|
196 | </para>
|
---|
197 | </tip>
|
---|
198 |
|
---|
199 | </sect2>
|
---|
200 |
|
---|
201 | </sect1>
|
---|
202 |
|
---|
203 |
|
---|