source: lxqt/apps/qterminal.xml@ 43672ca

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 12.2 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gimp3 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/for-12.3 xry111/intltool xry111/llvm18 xry111/soup3 xry111/spidermonkey128 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 43672ca was e7df575, checked in by Pierre Labastie <pieere@…>, 8 years ago

Update LXQt applications and add pavucontrol-qt

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

  • Property mode set to 100644
File size: 6.8 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 qterminal-download-http "https://downloads.lxqt.org/qterminal/&qterminal-version;/qterminal-&qterminal-version;.tar.xz">
8 <!ENTITY qterminal-download-ftp " ">
9 <!ENTITY qterminal-md5sum "566ba64cbec739b94b0ba2bc9cca2880">
10 <!ENTITY qterminal-size "96 KB">
11 <!ENTITY qterminal-buildsize "3.7 MB (add 1.3 MB for the API documentation)">
12 <!ENTITY qterminal-time "0.25 SBU (with the API documentation)">
13]>
14
15<sect1 id="qterminal" xreflabel="qterminal-&qterminal-version;">
16 <?dbhtml filename="qterminal.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>qterminal-&qterminal-version;</title>
24
25 <indexterm zone="qterminal">
26 <primary sortas="a-qterminal">qterminal</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to qterminal</title>
31
32 <para>
33 The <application>qterminal</application> package contains a Qt widget
34 based terminal emulator for <application>Qt</application> with support
35 for multiple tabs.
36 </para>
37
38 &lfs7a_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&qterminal-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&qterminal-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &qterminal-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &qterminal-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &qterminal-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &qterminal-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">qterminal Dependencies</bridgehead>
75
76 <bridgehead renderas="sect4">Required</bridgehead>
77 <para role="required">
78 <xref linkend="liblxqt"/> and
79 <xref linkend="qtermwidget"/>
80 </para>
81
82 <bridgehead renderas="sect4">Optional</bridgehead>
83 <para role="optional">
84 <xref linkend="doxygen"/> and
85 <xref linkend="texlive"/> (or <xref linkend="tl-installer"/>),
86 for documentation, and
87 <xref linkend="git"/> (to download translation files) or
88 <xref linkend="lxqt-l10n"/> (to add localization files)
89 </para>
90
91 <para condition="html" role="usernotes">
92 User Notes: <ulink url="&blfs-wiki;/qterminal"/>
93 </para>
94 </sect2>
95
96 <sect2 role="installation">
97 <title>Installation of qterminal</title>
98
99 <para>
100 Install <application>qterminal</application> by running the following
101 commands:
102 </para>
103
104<screen><userinput>mkdir -v build &amp;&amp;
105cd build &amp;&amp;
106
107cmake -DCMAKE_BUILD_TYPE=Release \
108 -DCMAKE_INSTALL_PREFIX=/usr \
109 -DPULL_TRANSLATIONS=no \
110 .. &amp;&amp;
111
112make</userinput></screen>
113
114 <para>
115 The choice of <filename class="directory">/usr</filename> prefix is due
116 to the general characteristics of this program, which can be used
117 without <application>LXQt</application>.
118 </para>
119
120 <para>
121 If you have <xref linkend="doxygen"/> installed, and wish to create the
122 API documentation, issue:
123 </para>
124
125<screen><userinput>doxygen ../Doxyfile</userinput></screen>
126
127 <para>
128 The html API documentation has been generated with the previous command.
129 Now, if you also have <xref linkend="texlive"/> (or <xref
130 linkend="tl-installer"/>) installed, and wish to create the pdf API
131 reference manual, issue:
132 </para>
133
134<screen><userinput>make -C docs/latex</userinput></screen>
135
136 <para>
137 This package does not come with a test suite.
138 </para>
139
140 <para>
141 Now, as the <systemitem class="username">root</systemitem> user:
142 </para>
143
144<screen role="root"><userinput>make install</userinput></screen>
145
146 <para>
147 To install the html API documentation, if you opted to generate it, issue,
148 as the <systemitem class="username">root</systemitem> user:
149 </para>
150
151<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/qterminal-&qterminal-version;/{html,pdf} &amp;&amp;
152cp -vr docs/html/* /usr/share/doc/qterminal-&qterminal-version;/html</userinput></screen>
153
154 <para>
155 The pdf API reference manual can be installed with, as
156 the <systemitem class="username">root</systemitem> user:
157 </para>
158
159<screen role="root"><userinput>install -v -m644 docs/latex/refman.pdf \
160 /usr/share/doc/qterminal-&qterminal-version;/pdf</userinput></screen>
161
162 <para>
163 If <xref linkend="lxqt-l10n"/> is not installed in <filename
164 class="directory">/usr</filename>, the translation files are not found.
165 To cure that, run, as the <systemitem class="username">root</systemitem>:
166 </para>
167
168<screen role="root"><userinput>if [ "$LXQT_PREFIX" != /usr ]; then
169 ln -s $LXQT_PREFIX/share/qterminal /usr/share
170fi</userinput></screen>
171
172 <para>
173 Note that the above instruction works only if <envar>LXQT_PREFIX</envar>
174 has been set as explained in <xref linkend="lxqt-pre-install"/>.
175 </para>
176
177 </sect2>
178
179 <sect2 role="commands">
180 <title>Command Explanations</title>
181
182 <para>
183 <parameter>-DPULL_TRANSLATIONS=no</parameter>: Removes the need for
184 <xref linkend="git"/>, which would otherwise be requested to download
185 the translation files.
186 </para>
187
188 </sect2>
189
190 <sect2 role="content">
191 <title>Contents</title>
192
193 <segmentedlist>
194 <segtitle>Installed Program</segtitle>
195 <segtitle>Installed Libraries</segtitle>
196 <segtitle>Installed Directories</segtitle>
197
198 <seglistitem>
199 <seg>
200 qterminal
201 </seg>
202 <seg>
203 None
204 </seg>
205 <seg>
206 /usr/share/doc/qterminal-&qterminal-version; (if the documentation
207 is installed)
208 </seg>
209 </seglistitem>
210 </segmentedlist>
211
212 <variablelist>
213 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
214 <?dbfo list-presentation="list"?>
215 <?dbhtml list-presentation="table"?>
216
217 <varlistentry id="qterminal-prog">
218 <term><command>qterminal</command></term>
219 <listitem>
220 <para>
221 is a <application>Qt</application> based lightweight terminal
222 emulator.
223 </para>
224 <indexterm zone="qterminal qterminal-prog">
225 <primary sortas="b-qterminal">qterminal</primary>
226 </indexterm>
227 </listitem>
228 </varlistentry>
229
230 </variablelist>
231
232 </sect2>
233
234</sect1>
Note: See TracBrowser for help on using the repository browser.