source: x/lib/qt.xml@ 2dae8b3

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb v5_1 v5_1-pre1 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 2dae8b3 was 2dae8b3, checked in by Tushar Teredesai <tushar@…>, 20 years ago

Use envvar KDE_PREFIX for kde installation

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2204 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 9.1 KB
RevLine 
[46bca118]1<sect1 id="qt" xreflabel="Qt-&qt-version;">
[19aa75a]2<?dbhtml filename="qt.html" ?>
[46bca118]3<title>Qt-&qt-version;</title>
[f45b1953]4
[972150e7]5<sect2>
6<title>Introduction to <application>Qt</application></title>
[f45b1953]7
[972150e7]8<para>The <application>Qt</application> package contains a
9<application>C++</application> <acronym>GUI</acronym> library. This is useful
10for creating graphical applications or executing graphical applications that
11are dynamically linked to the <application>Qt</application> library. One of the
12major users of <application>Qt</application> is <application>KDE</application>.</para>
13
14<sect3><title>Package information</title>
15<itemizedlist spacing='compact'>
16<listitem><para>Download (HTTP): <ulink url="&qt-download-http;"/></para></listitem>
17<listitem><para>Download (FTP): <ulink url="&qt-download-ftp;"/></para></listitem>
18<listitem><para>MD5 Sum: &qt-md5sum;</para></listitem>
19<listitem><para>Download size: &qt-size;</para></listitem>
20<listitem><para>Estimated Disk space required: &qt-buildsize;</para></listitem>
21<listitem><para>Estimated build time: &qt-time;</para></listitem></itemizedlist>
22</sect3>
23
24<sect3><title><application>Qt</application> dependencies</title>
25<sect4><title>Required</title>
26<para><xref linkend="x-installing"/></para>
27</sect4>
28<sect4><title>Recommended</title>
29<para><xref linkend="libjpeg"/> and <xref linkend="libmng"/>.</para>
30</sect4>
31
32<sect4><title>Optional</title>
33<para><xref linkend="nas"/>, <xref linkend="cups"/>, <xref linkend="mysql"/>,
34<xref linkend="postgresql"/>, <ulink url="http://firebird.sourceforge.net/">Firebird</ulink>,
35and <ulink url="http://www.unixodbc.org/">unixODBC</ulink>.</para>
36</sect4>
37</sect3>
38</sect2>
39
40<sect2>
41<title>Installation of <application>Qt</application></title>
42
43<para>There are several ways to install a complicated package such as <application>Qt</application>.
44The files are not completely position independent. Installation procedures execute the
45program <filename>pkg-config</filename> to determine the location of package executables, libraries,
46headers, and other files. For <application>Qt</application>, <filename>pkg-config</filename> will
47look for the file <filename>lib/pkgconfig/qt-mt.pc</filename> which must be modified if relocating the
48package. This file is set up correctly by the build process.</para>
49
50<para>The default installation places the files in <filename class='directory'>/usr/local/qt/</filename>.
51Many commercial distributions place the files in the system's
52<filename class='directory'>/usr</filename> hierarchy. The package can also be installed
53in an arbitrary directory.</para>
54
55<para>This section will demonstrate two different methods.</para>
56
57
58<note><para>The build time for <application>Qt</application> is quite long. If you want to
59save some time and don't want the tutorials and examples, change the first make line to:</para>
60
61<para><userinput><command>make sub-tools</command></userinput></para>
62</note>
63
64<sect3>
65<title>Method 1 - Installing in the <filename class='directory'>/usr</filename> hierarchy</title>
66
67<para>The advantage of this method is that no updates to the <filename>/etc/ld.so.conf</filename>
68or <filename>/etc/man.conf</filename> files are required. The package files
69are distributed within several subdirectories of the <filename class='directory'>/usr</filename>
70hierarchy. This is the method that most commercial distributions use.</para>
71
72
73<screen><userinput><command>sed -i "s:cp -f:install:" mkspecs/linux-g++/qmake.conf &amp;&amp;
74bash
75export PATH=$PWD/bin:$PATH &amp;&amp;
[2dae8b3]76export LD_LIBRARY_PATH=$PWD/lib:$LD_LIBRARY_PATH &amp;&amp;
[972150e7]77./configure -prefix /usr -docdir /usr/share/doc/qt \
78 -headerdir /usr/include/qt -plugindir /usr/lib/qt/plugins \
79 -datadir /usr/share/qt -translationdir /usr/share/qt/translations \
80 -sysconfdir /etc/qt -qt-gif -system-zlib \
81 -no-exceptions -thread -plugin-imgfmt-png -system-libpng &amp;&amp;
82find -type f -name Makefile | xargs sed -i "s@-Wl,-rpath,/usr/lib@@g" &amp;&amp;
[2657b9c]83make &amp;&amp;
[972150e7]84make install &amp;&amp;
85ln -sf libqt-mt.so /usr/lib/libqt.so &amp;&amp;
86cp -r doc/man /usr/share &amp;&amp;
87cp -r examples /usr/share/doc/qt &amp;&amp;
88exit</command></userinput></screen>
89
90</sect3>
91
92<sect3>
93<title>Method 2 - Installing in <filename class='directory'>/opt</filename></title>
94
95<para>This is the method recommended by the <application>Qt</application> developers. It
96has the advantage of keeping all the package files consolidated in a dedicated directory
97hierarchy. By using this method, an update can be made without overwriting a previous
98installation and users can easily back up to a previous version by changing one symbolic
99link.</para>
100
101<para>The <application>Qt</application> developers use a default location of
102<filename class='directory'>/usr/local/qt/</filename>, however this procedure puts the files
103in <filename class='directory'>/opt/qt-&qt-version;/</filename> and then creates a
104symbolic link to <filename>/opt/qt/</filename>.</para>
105
106
107<screen><userinput><command>bash
108export QTDIR=$PWD &amp;&amp;
[2dae8b3]109export LD_LIBRARY_PATH=$PWD/lib:$LD_LIBRARY_PATH &amp;&amp;
[972150e7]110export PATH=$PWD/bin:$PATH &amp;&amp;
111./configure -prefix /opt/qt-&qt-version; -qt-gif -system-libpng \
112&nbsp;&nbsp;&nbsp;-system-libmng -system-zlib -system-libjpeg -no-exceptions \
113&nbsp;&nbsp;&nbsp;-thread -plugin-imgfmt-png &amp;&amp;
114make &amp;&amp;
115make install &amp;&amp;
116ln -sfn qt-&qt-version; /opt/qt &amp;&amp;
117ln -s libqt-mt.so /opt/qt/lib/libqt.so &amp;&amp;
118cp -r doc/man /opt/qt/doc &amp;&amp;
119cp -r examples /opt/qt/doc
120exit</command></userinput></screen>
121
122<sect4>
123<title>Configuration</title>
124
125<para>For Method 2 only, update the <filename>/etc/ld.so.conf</filename> and
126<filename>/etc/man.conf</filename> files.</para>
127
128
129<screen><userinput><command>cat &gt;&gt; /etc/ld.so.conf &lt;&lt; "EOF"
130# Begin qt addition to /etc/ld.so.conf
131
132/opt/qt/lib
133
134# End qt addition
135EOF
136ldconfig
137
138cat &gt;&gt; /etc/man.conf &lt;&lt; "EOF"
139# Begin qt addition to man.conf
[f45b1953]140
[972150e7]141MANPATH /opt/qt/doc/man
142
143# End qt addition to man.conf
144EOF</command></userinput></screen>
[2dae8b3]145
146<para>Also, <envar>QTDIR</envar> needs to be set when compiling packages that depend on Qt.
147Add the following so that it is available when compiling packages.</para>
148
149<screen><userinput>export QTDIR=/opt/qt</userinput></screen>
150
[972150e7]151</sect4>
152</sect3>
153</sect2>
154
155<sect2>
156<title>Command explanations</title>
157
158<para><command>sed -i "s:cp -f:install:" mkspecs/linux-g++/qmake.conf</command>:
159<command>install</command> is safer than <command>cp</command> when
160libraries are in use.</para>
161
162<para><command>bash</command>: This command enters a sub-shell to isolate
163environment changes.</para>
164
165<para><command>export QTDIR=$PWD</command>: This command
166defines where the root of the Qt directory is located.</para>
167
[2dae8b3]168<para><command>export LD_LIBRARY_PATH=$PWD/lib:$LD_LIBRARY_PATH</command>: This command
169allows the not yet installed qt libraries to be used by the not yet installed qt programs.</para>
[972150e7]170
171<para><command>export PATH=$PWD/bin:$PATH</command>: This command
172allows the build process to find supporting executables.</para>
173
174<para><parameter>-qt-gif</parameter>: This switch adds support for gif
175files to the libraries.</para>
176
177<para><parameter>-system-zlib -system-libpng</parameter>: This switch
178forces the library to use the shared libraries that are on your system
179instead of recreating its own set of support libraries for these
180functions.</para>
181
182<para><parameter>-no-exceptions</parameter>: This switch disables
183the exceptions coding generated by the <application>C++</application> compiler.</para>
184
185<para><parameter>-thread</parameter>: This switch adds
186support for multi-threading.</para>
187
188<para><command>find -type f -name Makefile | xargs sed -i "s@-Wl,-rpath,/usr/lib@@g"</command>:
189This command removes hardcoded run-time path, else
190<command>uic</command> tries to run with system installed Qt
191libraries.</para>
192
193<para><command>ln -s libqt-mt.so /usr/lib/libqt.so</command>: This
194command allows configure scripts
195to find a working <application>Qt</application> installation.</para>
196
197<para><command>cp -r doc/man /usr/share (or /opt/qt/doc)</command>: This command
198installs the man pages which are missed by <command>make install</command>.</para>
199
200<para><command>cp -r examples /usr/share/doc/qt (or /opt/qt/doc)</command>: This command
201installs the examples which are missed by <command>make install</command>.</para>
202
203<para><command>exit</command>: This command returns to the parent shell
204and eliminates environment variables set earlier.</para>
205
206</sect2>
207<sect2>
208<title>Configuring <application>Qt</application></title>
209
210<sect3><title>Configuration Information</title>
211
212&library-config;
213
214</sect3>
215
216</sect2>
217<sect2>
218<title>Contents</title>
219
220<para>The <application>Qt</application>/<application>X11</application>
221library contains <acronym>API</acronym>'s necessary to use
222programs based on Qt <acronym>GUI</acronym> toolkit.</para>
223
224<para>The <application>Qt</application> package contains
225<command>assistant</command>,
226<command>designer</command>,
227<command>linguist</command>,
228<command>lrelease</command>,
229<command>lupdate</command>,
230<command>moc</command>,
231<command>qm2ts</command>,
232<command>qmake</command>,
233<command>qtconfig</command>,
234<command>uic</command>, and the
235<filename class="libraryfile">libqt-mt</filename> and
236<filename class="libraryfile">libqui</filename> libraries.</para>
237
238</sect2>
239</sect1>
Note: See TracBrowser for help on using the repository browser.