source: xsoft/graphweb/falkon.xml@ 2402feb

11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since 2402feb was 2402feb, checked in by Bruce Dubbs <bdubbs@…>, 16 months ago

Update to kf5-apps-22.12.0
Includes kate, kwave, and falkon.

  • 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 <!ENTITY falkon-download-http "&kf5apps-download-http;/falkon-&kf5apps-version;.tar.xz">
8 <!ENTITY falkon-download-ftp " ">
9 <!ENTITY falkon-md5sum "fe5dd8e1fae06c4e9ac0332e78848009">
10 <!ENTITY falkon-size "2.4 MB">
11 <!ENTITY falkon-buildsize "129 MB">
12 <!ENTITY falkon-time "1.2 SBU (Using parallelism=4)">
13]>
14
15<sect1 id="falkon" xreflabel="falkon-&kf5apps-version;">
16 <?dbhtml filename="falkon.html"?>
17
18
19 <title>Falkon-&kf5apps-version;</title>
20
21 <indexterm zone="falkon">
22 <primary sortas="a-falkon">falkon</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to falkon</title>
27
28 <para>
29 <application>Falkon</application> is a KDE web browser using the QtWebEngine
30 rendering engine. It was previously known as <application>QupZilla</application>.
31 It aims to be a lightweight web browser available through all major platforms.
32 </para>
33
34 <para>
35 Although <application>falkon</application> is now part of KDE, it can be
36 installed without KDE (with the loss of <application>kwallet</application>
37 functionality).
38 </para>
39
40 <warning>
41 <para>
42 Falkon relies on QtWebEngine. That uses a forked copy of chromium, and
43 is therefore vulnerable to many issues found there. The Qt developers
44 have always preferred to make releases at the same time as the rest of Qt
45 (rather than adding emergency fixes). Now that they are keen to move to
46 Qt6, the 5.15.3 and later Qt-5.15 releases are initially only available
47 to paying customers. QtWebEngine is something of an exception because of
48 its LGPL licence, but getting the git sources (with the forked chromium
49 submodule) to a point where they will successfully build on a current
50 BLFS system can take a lot of effort. Be aware that future fixes for
51 vulnerabilities might be very delayed, to the extent that you might wish
52 to consider using a different browser.
53 </para>
54 </warning>
55
56 &lfs112_checked;
57
58 <bridgehead renderas="sect3">Package Information</bridgehead>
59 <itemizedlist spacing="compact">
60 <listitem>
61 <para>
62 Download (HTTP): <ulink url="&falkon-download-http;"/>
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Download (FTP): <ulink url="&falkon-download-ftp;"/>
68 </para>
69 </listitem>
70 <listitem>
71 <para>
72 Download MD5 sum: &falkon-md5sum;
73 </para>
74 </listitem>
75 <listitem>
76 <para>
77 Download size: &falkon-size;
78 </para>
79 </listitem>
80 <listitem>
81 <para>
82 Estimated disk space required: &falkon-buildsize;
83 </para>
84 </listitem>
85 <listitem>
86 <para>
87 Estimated build time: &falkon-time;
88 </para>
89 </listitem>
90 </itemizedlist>
91
92 <bridgehead renderas="sect3">falkon Dependencies</bridgehead>
93
94 <bridgehead renderas="sect4">Required</bridgehead>
95 <para role="required">
96 <xref linkend="extra-cmake-modules"/>,
97 <xref linkend="kf5-frameworks"/> (for karchive), and
98 <xref linkend="qtwebengine"/>
99 </para>
100
101 <note>
102 <para>
103 Strictly speaking, only karchive is required to build falkon,
104 but several other packages in KF5 can be used if they are present. To
105 build only karchive, download that package from the directory specified
106 in <xref linkend="kf5-frameworks"/> and use the build instructions on
107 that page changing the $KF5_PREFIX to /usr.
108 </para>
109 </note>
110
111 <bridgehead renderas="sect4">Optional</bridgehead>
112 <para role="optional">
113 <xref linkend="gnome-keyring"/>,
114 <ulink url="https://pypi.org/project/PySide2/">PySide2</ulink>, and
115 <ulink url="https://pypi.org/project/shiboken2/">Shiboken2</ulink>
116 </para>
117
118 <para condition="html" role="usernotes">
119 User Notes: <ulink url="&blfs-wiki;/falkon"/>
120 </para>
121 </sect2>
122
123 <sect2 role="installation">
124 <title>Installation of falkon</title>
125
126 <para>
127 Install <application>falkon</application> by running the following
128 commands:
129 </para>
130
131<screen><userinput>mkdir build &amp;&amp;
132cd build &amp;&amp;
133
134cmake -DCMAKE_INSTALL_PREFIX=/usr \
135 -DCMAKE_BUILD_TYPE=Release \
136 .. &amp;&amp;
137
138make</userinput></screen>
139
140 <para>
141 To test the results, issue: <command>make test</command>. All
142 tests should pass. If any fail, the full results will be in
143 <filename>Testing/Temporary/LastTest.log</filename>.
144 </para>
145
146 <para>
147 Now, as the <systemitem class="username">root</systemitem> user:
148 </para>
149
150<screen role="root"><userinput>make install</userinput></screen>
151
152 <para>
153 If you have installed <application>Pyside2</application> you will want to
154 examine <command>hellopython.py</command> which is in the <filename
155 class="directory">scripts/</filename> directory, and perhaps copy it to
156 your home directory.
157 </para>
158
159 </sect2>
160
161 <sect2 role="commands">
162 <title>Command Explanations</title>
163
164 <para>
165 <option>-DBUILD_TESTING=OFF</option>: This will save a little time and space by
166 not building the test programs, use this if you do not wish to run the test.
167 </para>
168
169 </sect2>
170
171 <sect2 role="content">
172 <title>Contents</title>
173
174 <segmentedlist>
175 <segtitle>Installed Programs</segtitle>
176 <segtitle>Installed Library</segtitle>
177 <segtitle>Installed Directory</segtitle>
178
179 <seglistitem>
180 <seg>
181 falkon
182 </seg>
183 <seg>
184 libFalkonPrivate.so.3
185 </seg>
186 <seg>
187 /usr/share/falkon
188 </seg>
189 </seglistitem>
190 </segmentedlist>
191
192 <variablelist>
193 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
194 <?dbfo list-presentation="list"?>
195 <?dbhtml list-presentation="table"?>
196
197 <varlistentry id="falkon-prog">
198 <term><command>falkon</command></term>
199 <listitem>
200 <para>
201 is a web browser which uses qtwebengine
202 </para>
203 <indexterm zone="falkon falkon-prog">
204 <primary sortas="b-falkon">falkon</primary>
205 </indexterm>
206 </listitem>
207 </varlistentry>
208
209 <varlistentry id="libFalkonPrivate.so.3">
210 <term><filename class="libraryfile">libFalkonPrivate.so.3</filename></term>
211 <listitem>
212 <para>
213 contains functions used by falkon
214 </para>
215 <indexterm zone="falkon libFalkonPrivate.so.3">
216 <primary sortas="c-libFalkonPrivate.so.3">libFalkonPrivate.so.3</primary>
217 </indexterm>
218 </listitem>
219 </varlistentry>
220 </variablelist>
221 </sect2>
222
223</sect1>
Note: See TracBrowser for help on using the repository browser.