source: xsoft/graphweb/qupzilla.xml@ 601e298

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 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 601e298 was 601e298, checked in by Ken Moffat <ken@…>, 7 years ago

Tags

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

  • Property mode set to 100644
File size: 6.9 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 <!-- https://github.com/QupZilla/qupzilla/tags
8 https://github.com/QupZilla/qupzilla/releases/download/v2.0.0/QupZilla-2.0.0.tar.xz
9 -->
10 <!ENTITY qupzilla-download-http "https://github.com/QupZilla/qupzilla/releases/download/v&qupzilla-version;/QupZilla-&qupzilla-version;.tar.xz">
11 <!ENTITY qupzilla-download-ftp " ">
12 <!ENTITY qupzilla-md5sum "84e4b9dda1e0bb5ad96f3b87f9fc1328">
13 <!ENTITY qupzilla-size "2.6 MB">
14 <!ENTITY qupzilla-buildsize "63 MB">
15 <!ENTITY qupzilla-time "4.3 SBU">
16]>
17
18<sect1 id="qupzilla" xreflabel="QupZilla-&qupzilla-version;">
19 <?dbhtml filename="qupzilla.html"?>
20
21 <sect1info>
22 <othername>$LastChangedBy$</othername>
23 <date>$Date$</date>
24 </sect1info>
25
26 <title>QupZilla-&qupzilla-version;</title>
27
28 <indexterm zone="qupzilla">
29 <primary sortas="a-QupZilla">QupZilla</primary>
30 </indexterm>
31
32 <sect2 role="package">
33 <title>Introduction to QupZilla</title>
34
35 <para>
36 <application>QupZilla</application> is a fast, feature-rich and
37 lightweight <application>QtWebEngine</application> based browser,
38 originally intended only for educational purposes.
39 </para>
40
41 &lfs81_checked;
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44
45 <itemizedlist spacing="compact">
46 <listitem>
47 <para>
48 Download (HTTP): <ulink url="&qupzilla-download-http;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download (FTP): <ulink url="&qupzilla-download-ftp;"/>
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download MD5 sum: &qupzilla-md5sum;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Download size: &qupzilla-size;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated disk space required: &qupzilla-buildsize;
69 </para>
70 </listitem>
71 <listitem>
72 <para>
73 Estimated build time: &qupzilla-time;
74 </para>
75 </listitem>
76 </itemizedlist>
77
78 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
79 <itemizedlist spacing="compact">
80 <listitem>
81 <para>
82 Required patch to build with OpenSSL-1.1:
83 <ulink url="&patch-root;/qupzilla-&qupzilla-version;-openssl1.1-1.patch"/>
84 </para>
85 </listitem>
86 </itemizedlist>
87
88
89 <bridgehead renderas="sect3">QupZilla Dependencies</bridgehead>
90
91 <bridgehead renderas="sect4">Required</bridgehead>
92 <para role="required">
93 <xref linkend="qtwebengine"/>
94 </para>
95
96 <bridgehead renderas="sect4">Optional</bridgehead>
97 <para role="optional">
98 <xref linkend="gdb"/>,
99<!-- <xref linkend="kdelibs"/> (KWallet plugin), -->
100 <ulink url="http://hunspell.sourceforge.net/">Hunspell</ulink>, and
101 <ulink url="&gnome-download-ftp;/libgnome-keyring/">libgnome-keyring</ulink> (Gnome-Keyring plugin)
102 </para>
103
104 <para condition="html" role="usernotes">
105 User Notes: <ulink url="&blfs-wiki;/qupzilla"/>
106 </para>
107 </sect2>
108
109 <sect2 role="installation">
110 <title>Installation of QupZilla</title>
111
112 <para>
113 Install <application>QupZilla</application> by running the following
114 commands:
115 </para>
116
117<screen><userinput>patch -p1 -i ../qupzilla-&qupzilla-version;-openssl1.1-1.patch &amp;&amp;
118
119export QUPZILLA_PREFIX=/usr &amp;&amp;
120qmake &amp;&amp;
121make</userinput></screen>
122
123 <para>
124 The <command>export</command> command is used for configuring the build.
125 Alternatively, you can add the environment variable to
126 <filename>src/defines.pri</filename>.
127 </para>
128
129 <para>
130 This package does not come with a test suite.
131 </para>
132
133 <para>
134 Now, as the <systemitem class="username">root</systemitem> user:
135 </para>
136
137<screen role="root"><userinput>make install</userinput></screen>
138
139 <para>
140 If <xref linkend="desktop-file-utils"/> and <xref linkend="xdg-utils"/>
141 are installed, run as, the <systemitem
142 class="username">root</systemitem> user:
143 </para>
144
145<screen role="root"><userinput>xdg-icon-resource forceupdate --theme hicolor &amp;&amp;
146update-desktop-database -q</userinput></screen>
147
148 </sect2>
149
150 <sect2 role="commands">
151 <title>Command Explanations</title>
152
153 <note>
154 <para>
155 If you wish to use any of the following variables, they need to be
156 exported. You can add them to the <command>export</command> block in
157 the main instructions. Alternatively, instead of exporting, they can
158 be added, one at a line, to <filename>src/defines.pri</filename>.
159 </para>
160 </note>
161
162 <para>
163 <envar>CONFIG += debug</envar>: Use if you want to build QupZilla with
164 debugging symbols.
165 </para>
166
167 <para>
168 <envar>GNOME_INTEGRATION=true</envar>: Enables Gnome integration, this
169 meaning the build of Gnome-Keyring Password plugin, which provides
170 support for storing passwords in Gnome-Keyring.
171 </para>
172
173 <para>
174 <envar>KDE_INTEGRATION=true</envar>: Enables KDE integration, this
175 meaning the build of KWallet Password plugin, which provides support for
176 storing passwords in KWallet.
177 </para>
178
179 </sect2>
180
181 <sect2 role="content">
182 <title>Contents</title>
183
184 <segmentedlist>
185 <segtitle>Installed Program</segtitle>
186 <segtitle>Installed Libraries</segtitle>
187 <segtitle>Installed Directory</segtitle>
188
189 <seglistitem>
190 <seg>
191 qupzilla
192 </seg>
193 <seg>
194 libQupZilla.so and plugins under $LXQT_PREFIX/lib/qupzilla/
195 </seg>
196 <seg>
197 $LXQT_PREFIX/{lib,share}/qupzilla
198 </seg>
199 </seglistitem>
200 </segmentedlist>
201
202 <variablelist>
203 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
204 <?dbfo list-presentation="list"?>
205 <?dbhtml list-presentation="table"?>
206
207 <varlistentry id="qupzilla-prog">
208 <term><command>qupzilla</command></term>
209 <listitem>
210 <para>
211 is a lightweight <application>QtWebEngine</application> web browser.
212 </para>
213 <indexterm zone="qupzilla qupzilla-prog">
214 <primary sortas="b-qupzilla">qupzilla</primary>
215 </indexterm>
216 </listitem>
217 </varlistentry>
218
219 <varlistentry id="libQupZilla">
220 <term><filename class="libraryfile">libQupZilla.so</filename></term>
221 <listitem>
222 <para>
223 contains the <application>libQupZilla</application> API functions.
224 </para>
225 <indexterm zone="qupzilla libQupZilla">
226 <primary sortas="c-libQupZilla">libQupZilla.so</primary>
227 </indexterm>
228 </listitem>
229 </varlistentry>
230
231 </variablelist>
232
233 </sect2>
234
235</sect1>
Note: See TracBrowser for help on using the repository browser.