source: lxqt/apps/qterminal.xml@ d9c3e477

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 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 d9c3e477 was cad9d657, checked in by Bruce Dubbs <bdubbs@…>, 7 years ago

Update urls for qterm* packages

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

  • Property mode set to 100644
File size: 6.7 KB
RevLine 
[20e1589]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
[cad9d657]7 <!ENTITY qterminal-download-http "https://github.com/lxde/qterminal/releases/download/&qterminal-version;/qterminal-&qterminal-version;.tar.xz">
[20e1589]8 <!ENTITY qterminal-download-ftp " ">
[822ec11]9 <!ENTITY qterminal-md5sum "6c27ac08df0b6c8322729e0ad981873d">
10 <!ENTITY qterminal-size "100 KB">
[e7df575]11 <!ENTITY qterminal-buildsize "3.7 MB (add 1.3 MB for the API documentation)">
[822ec11]12 <!ENTITY qterminal-time "0.3 SBU (with the API documentation)">
[20e1589]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
[00610e5]38 &lfs7a_checked;
[20e1589]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">
[e7df575]78 <xref linkend="liblxqt"/> and
[20e1589]79 <xref linkend="qtermwidget"/>
80 </para>
81
[79ba2ea]82 <bridgehead renderas="sect4">Optional</bridgehead>
83 <para role="optional">
84 <xref linkend="doxygen"/> and
[e7df575]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)
[79ba2ea]89 </para>
90
[20e1589]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>
[e7df575]100 Install <application>qterminal</application> by running the following
101 commands:
[20e1589]102 </para>
103
104<screen><userinput>mkdir -v build &amp;&amp;
105cd build &amp;&amp;
106
[822ec11]107cmake -DCMAKE_BUILD_TYPE=Release \
108 -DCMAKE_INSTALL_PREFIX=$LXQT_PREFIX \
109 -DPULL_TRANSLATIONS=no \
[20e1589]110 .. &amp;&amp;
111
112make</userinput></screen>
113
[79ba2ea]114 <para>
115 If you have <xref linkend="doxygen"/> installed, and wish to create the
116 API documentation, issue:
117 </para>
118
119<screen><userinput>doxygen ../Doxyfile</userinput></screen>
120
121 <para>
122 The html API documentation has been generated with the previous command.
[5ee1266]123 Now, if you also have <xref linkend="texlive"/> (or <xref
[79ba2ea]124 linkend="tl-installer"/>) installed, and wish to create the pdf API
125 reference manual, issue:
126 </para>
127
128<screen><userinput>make -C docs/latex</userinput></screen>
129
[20e1589]130 <para>
131 This package does not come with a test suite.
132 </para>
133
134 <para>
135 Now, as the <systemitem class="username">root</systemitem> user:
136 </para>
137
138<screen role="root"><userinput>make install</userinput></screen>
139
[79ba2ea]140 <para>
[d26cf13b]141 To install the html API documentation, if you opted to generate it, issue,
[79ba2ea]142 as the <systemitem class="username">root</systemitem> user:
143 </para>
144
145<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/qterminal-&qterminal-version;/{html,pdf} &amp;&amp;
[d26cf13b]146cp -vr docs/html/* /usr/share/doc/qterminal-&qterminal-version;/html</userinput></screen>
[79ba2ea]147
148 <para>
[d26cf13b]149 The pdf API reference manual can be installed with, as
[79ba2ea]150 the <systemitem class="username">root</systemitem> user:
151 </para>
152
[d26cf13b]153<screen role="root"><userinput>install -v -m644 docs/latex/refman.pdf \
154 /usr/share/doc/qterminal-&qterminal-version;/pdf</userinput></screen>
[79ba2ea]155
[e7df575]156 <para>
157 If <xref linkend="lxqt-l10n"/> is not installed in <filename
158 class="directory">/usr</filename>, the translation files are not found.
159 To cure that, run, as the <systemitem class="username">root</systemitem>:
160 </para>
[20e1589]161
[e7df575]162<screen role="root"><userinput>if [ "$LXQT_PREFIX" != /usr ]; then
163 ln -s $LXQT_PREFIX/share/qterminal /usr/share
164fi</userinput></screen>
[20e1589]165
166 <para>
[e7df575]167 Note that the above instruction works only if <envar>LXQT_PREFIX</envar>
168 has been set as explained in <xref linkend="lxqt-pre-install"/>.
[20e1589]169 </para>
170
[e7df575]171 </sect2>
172
173 <sect2 role="commands">
174 <title>Command Explanations</title>
175
[20e1589]176 <para>
[e7df575]177 <parameter>-DPULL_TRANSLATIONS=no</parameter>: Removes the need for
178 <xref linkend="git"/>, which would otherwise be requested to download
179 the translation files.
[20e1589]180 </para>
181
182 </sect2>
183
184 <sect2 role="content">
185 <title>Contents</title>
186
187 <segmentedlist>
188 <segtitle>Installed Program</segtitle>
189 <segtitle>Installed Libraries</segtitle>
[79ba2ea]190 <segtitle>Installed Directories</segtitle>
[20e1589]191
192 <seglistitem>
193 <seg>
194 qterminal
195 </seg>
196 <seg>
197 None
198 </seg>
199 <seg>
[e7df575]200 /usr/share/doc/qterminal-&qterminal-version; (if the documentation
201 is installed)
[20e1589]202 </seg>
203 </seglistitem>
204 </segmentedlist>
205
206 <variablelist>
207 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
208 <?dbfo list-presentation="list"?>
209 <?dbhtml list-presentation="table"?>
210
211 <varlistentry id="qterminal-prog">
212 <term><command>qterminal</command></term>
213 <listitem>
214 <para>
[18d6eae2]215 is a <application>Qt</application> based lightweight terminal
[d26cf13b]216 emulator.
[20e1589]217 </para>
218 <indexterm zone="qterminal qterminal-prog">
219 <primary sortas="b-qterminal">qterminal</primary>
220 </indexterm>
221 </listitem>
222 </varlistentry>
223
224 </variablelist>
225
226 </sect2>
227
228</sect1>
Note: See TracBrowser for help on using the repository browser.