source: lxqt/apps/qupzilla.xml@ 008a1824

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.8 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 008a1824 was 008a1824, checked in by Fernando de Oliveira <fernando@…>, 9 years ago
  • qupzilla-1.8.6: fix md5sum.

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

  • Property mode set to 100644
File size: 7.7 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 qupzilla-download-http "&sources-anduin-other-http;/qupzilla-&qupzilla-version;.tar.gz">
8 <!ENTITY qupzilla-download-ftp " ">
9 <!ENTITY qupzilla-md5sum "24c4033cbf20223eb73a33af9c037862">
10 <!ENTITY qupzilla-size "45 MB">
11 <!ENTITY qupzilla-buildsize "79 MB">
12 <!ENTITY qupzilla-time "3.1 SBU">
13]>
14
15<sect1 id="qupzilla" xreflabel="QupZilla-&qupzilla-version;">
16 <?dbhtml filename="qupzilla.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>qupzilla-&qupzilla-version;</title>
24
25 <indexterm zone="qupzilla">
26 <primary sortas="a-QupZilla">QupZilla</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to QupZilla</title>
31
32 <para>
33 <application>QupZilla</application> is a fast, feature-rich and
34 lightweight <application>QtWebKit</application> based browser,
35 originally intended only for educational purposes.
36 </para>
37
38 &lfs77_checked; &gcc5_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>
45 Download (HTTP): <ulink url="&qupzilla-download-http;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download (FTP): <ulink url="&qupzilla-download-ftp;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download MD5 sum: &qupzilla-md5sum;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download size: &qupzilla-size;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &qupzilla-buildsize;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated build time: &qupzilla-time;
71 </para>
72 </listitem>
73 </itemizedlist>
74
75 <bridgehead renderas="sect3">QupZilla Dependencies</bridgehead>
76
77 <bridgehead renderas="sect4">Required</bridgehead>
78 <para role="required">
79 <xref linkend="cmake"/>,
80 <xref linkend="openssl"/>, and
81 <xref linkend="qt5"/> or
82 <xref linkend="qt4"/>
83 </para>
84
85 <bridgehead renderas="sect4">Optional</bridgehead>
86 <para role="optional">
87 <xref linkend="gdb"/>,
88 <xref linkend="kdelibs"/> (KWallet plugin),
89 <ulink url="http://hunspell.sourceforge.net/">Hunspell</ulink>, and
90 <ulink url="&gnome-download-ftp;/libgnome-keyring/">libgnome-keyring</ulink> (Gnome-Keyring plugin)
91 </para>
92
93 <para condition="html" role="usernotes">
94 User Notes: <ulink url="&blfs-wiki;/qupzilla"/>
95 </para>
96 </sect2>
97
98 <sect2 role="installation">
99 <title>Installation of QupZilla</title>
100
101 <para>
102 The following fixes are needed, if building with
103 <application>Qt5</application>:
104 </para>
105
106<screen><userinput>sed -e '/qtlocalpeer/ i #include &lt;QDataStream&gt;' \
107 -i src/lib/3rdparty/qtsingleapplication/qtlocalpeer.cpp &amp;&amp;
108
109sed -e '/QHash/ i #include &lt;QObject&gt;' \
110 -i src/plugins/TabManager/tldextractor/tldextractor.h</userinput></screen>
111
112 <para>
113 If <application>Qt4</application> and <application>Qt5</application> are
114 installed, choose which one you prefer, by running <command>source
115 setqt4</command> or <command>source setqt5</command>, respectivelly.
116 </para>
117
118 <note>
119 <para>
120 By default, <application>QupZilla</application> installs its menu in
121 the Office category, depending on the Desktop Environment. If
122 desired, change it to the Internet category:
123 </para>
124
125<screen><userinput>sed -e 's/^TargetEnvironment/#&amp;/' \
126 -e 's/Categories=/&amp;Application;Internet;/' \
127 -i linux/applications/qupzilla.desktop</userinput></screen>
128 </note>
129
130 <para>
131 Install <application>QupZilla</application> by running the following
132 commands:
133 </para>
134
135<screen><userinput>export QUPZILLA_PREFIX=/usr \
136 USE_WEBGL=true &amp;&amp;
137
138qmake &amp;&amp;
139
140make</userinput></screen>
141
142 <para>
143 The <command>export</command> command is used for configuring the build.
144 Alternatively, you can add each environmet variable, one at a line, to
145 <filename>src/defines.pri</filename>. The choice of <filename
146 class="directory">/usr</filename> prefix is due to the general
147 characteristics of this program, which can be used without
148 <application>LXQt</application>.
149 </para>
150
151 <para>
152 This package does not come with a test suite.
153 </para>
154
155 <para>
156 Now, as the <systemitem class="username">root</systemitem> user:
157 </para>
158
159<screen role="root"><userinput>make install</userinput></screen>
160
161 <para>
162 If <xref linkend="desktop-file-utils"/> and <xref linkend="xdg-utils"/>
163 are installed, run as, the <systemitem
164 class="username">root</systemitem> user:
165 </para>
166
167<screen role="root"><userinput>xdg-icon-resource forceupdate --theme hicolor &amp;&amp;
168update-desktop-database -q</userinput></screen>
169
170 </sect2>
171
172 <sect2 role="commands">
173 <title>Command Explanations</title>
174
175 <note>
176 <para>
177 If you wish to use any of the following variables, they need to be
178 exported. You can add them to the <command>export</command> block in
179 the main instructions. Alternatively, instead of exporting, they can
180 be added, one at a line, to <filename>src/defines.pri</filename>.
181 </para>
182 </note>
183
184 <para>
185 <envar>CONFIG += debug</envar>: Use if you want to build QupZilla with
186 debugging symbols.
187 </para>
188
189 <para>
190 <envar>GNOME_INTEGRATION=true</envar>: Enables Gnome integration, this
191 meaning the build of Gnome-Keyring Password plugin, which provides
192 support for storing passwords in Gnome-Keyring.
193 </para>
194
195 <para>
196 <envar>KDE_INTEGRATION=true</envar>: Enables KDE integration, this
197 meaning the build of KWallet Password plugin, which provides support for
198 storing passwords in KWallet.
199 </para>
200
201 </sect2>
202
203 <sect2 role="content">
204 <title>Contents</title>
205
206 <segmentedlist>
207 <segtitle>Installed Program</segtitle>
208 <segtitle>Installed Libraries</segtitle>
209 <segtitle>Installed Directory</segtitle>
210
211 <seglistitem>
212 <seg>
213 qupzilla
214 </seg>
215 <seg>
216 libQupZilla.so and plugins under /usr/lib/qupzilla/
217 </seg>
218 <seg>
219 /usr/{lib,share}/qupzilla
220 </seg>
221 </seglistitem>
222 </segmentedlist>
223
224 <variablelist>
225 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
226 <?dbfo list-presentation="list"?>
227 <?dbhtml list-presentation="table"?>
228
229 <varlistentry id="qupzilla-prog">
230 <term><command>qupzilla</command></term>
231 <listitem>
232 <para>
233 is a lightweight <application>QtWebKit</application> web browser.
234 </para>
235 <indexterm zone="qupzilla qupzilla-prog">
236 <primary sortas="b-qupzilla">qupzilla</primary>
237 </indexterm>
238 </listitem>
239 </varlistentry>
240
241 <varlistentry id="libQupZilla">
242 <term><filename class="libraryfile">libQupZilla.so</filename></term>
243 <listitem>
244 <para>
245 contains the <application>libQupZilla</application> API functions.
246 </para>
247 <indexterm zone="qupzilla libQupZilla">
248 <primary sortas="c-libQupZilla">libQupZilla.so</primary>
249 </indexterm>
250 </listitem>
251 </varlistentry>
252
253 </variablelist>
254
255 </sect2>
256
257</sect1>
Note: See TracBrowser for help on using the repository browser.