source: gnome/platform/vte.xml@ e9bc1b66

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

Fix vte stats

  • Property mode set to 100644
File size: 7.2 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 vte-download-http "&gnome-download-http;/vte/&vte-minor;/vte-&vte-version;.tar.xz">-->
8<!-- <!ENTITY vte-download-ftp "&gnome-download-ftp;/vte/&vte-minor;/vte-&vte-version;.tar.xz">-->
9 <!ENTITY vte-download-http "https://gitlab.gnome.org/GNOME/vte/-/archive/&vte-version;/vte-&vte-version;.tar.gz">
10 <!ENTITY vte-download-ftp " ">
11 <!ENTITY vte-md5sum "1954cae9b70ce35bdf1f383b4ddc7d32">
12 <!ENTITY vte-size "620 KB">
13 <!ENTITY vte-buildsize "16 MB (with tests)">
14 <!ENTITY vte-time "0.3 SBU (using parallelism=4; with tests)">
15
16 <!-- For "Contents" and "Short Descriptions" sections -->
17 <!ENTITY vte-nano "91">
18]>
19
20<sect1 id="vte" xreflabel="VTE-&vte-version;">
21 <?dbhtml filename="vte.html"?>
22
23
24 <title>VTE-&vte-version;</title>
25
26 <indexterm zone="vte">
27 <primary sortas="a-VTE">VTE</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to VTE</title>
32
33 <para>
34 The <application>VTE</application> package contains a termcap
35 file implementation for terminal emulators.
36 </para>
37
38 &lfs113_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&vte-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&vte-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &vte-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &vte-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &vte-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &vte-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">VTE Dependencies</bridgehead>
75
76 <bridgehead renderas="sect4">Required</bridgehead>
77 <para role="required">
78 <xref linkend="gtk3"/>,
79 <xref linkend="libxml2"/>, and
80 <xref linkend="pcre2"/>
81 </para>
82
83 <bridgehead renderas="sect4">Recommended</bridgehead>
84 <para role="recommended">
85 <xref linkend="icu"/>,
86 <xref linkend="gnutls"/>,
87 <xref linkend="gobject-introspection"/>, and
88 <xref linkend="vala"/>
89 </para>
90
91 <bridgehead renderas="sect4">Optional</bridgehead>
92 <para role="optional">
93 <xref linkend="fribidi"/>,
94 <xref linkend="gi-docgen"/>, and
95 <xref linkend="gtk4"/>
96 </para>
97
98 <para condition="html" role="usernotes">User Notes:
99 <ulink url="&blfs-wiki;/vte"/>
100 </para>
101 </sect2>
102
103 <sect2 role="installation">
104 <title>Installation of VTE</title>
105
106 <para>
107 Install <application>VTE</application> by running the following
108 commands:
109 </para>
110
111<screen revision="systemd"><userinput>mkdir build &amp;&amp;
112cd build &amp;&amp;
113
114meson setup --prefix=/usr --buildtype=release -Dfribidi=false .. &amp;&amp;
115ninja</userinput></screen>
116
117<screen revision="sysv"><userinput>mkdir build &amp;&amp;
118cd build &amp;&amp;
119
120meson setup --prefix=/usr \
121 --buildtype=release \
122 -Dfribidi=false \
123 -D_systemd=false &amp;&amp;
124ninja</userinput></screen>
125
126 <para>
127 If you have <xref linkend='gi-docgen'/> installed and wish to build
128 the API documentation for this package, issue:
129 </para>
130
131 <!-- To editors: you may wonder why this change makes a
132 /usr/share/doc/vte-&vte-version; with only one subdirectory
133 "vte-2.91" inside. The reason is when -Dgtk4 is enabled,
134 another directory "vte-2.91-gtk4" will also be there. -->
135<screen role='nodump'><userinput>sed -e "/docdir =/s@\$@/ 'vte-&vte-version;'@" \
136 -e "/fatal-warnings/d" \
137 -i ../doc/reference/meson.build &amp;&amp;
138meson configure -Ddocs=true &amp;&amp;
139ninja</userinput></screen>
140
141 <para>
142 To test the results, issue <command>ninja test</command>.
143 </para>
144
145 <para>
146 Now, as the <systemitem class="username">root</systemitem> user:
147 </para>
148
149<screen role="root"><userinput>ninja install &amp;&amp;
150rm -v /etc/profile.d/vte.*</userinput></screen>
151
152 </sect2>
153
154 <sect2 role="commands">
155 <title>Command Explanations</title>
156
157 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
158 href="../../xincludes/meson-buildtype-release.xml"/>
159
160 <para>
161 <command>rm -v /etc/profile.d/vte.*</command>: This command removes two
162 files installed in /etc/profile.d that have no use on a LFS system.
163 </para>
164
165 <para>
166 <parameter>-Dfribidi=false</parameter>: Omit this switch if you want
167 to enable bidirectional capabilities.
168 </para>
169
170 <para>
171 <option>-Dgnutls=false</option>: Add this switch if you do not
172 want to enable GnuTLS support.
173 </para>
174
175 <para>
176 <option>-Dvapi=false</option>: Add this switch if you do not
177 want to enable vala bindings.
178 </para>
179
180 <para>
181 <option>-Dgtk4=true</option>: Add this switch to build the GTK4 widget.
182 </para>
183 </sect2>
184
185 <sect2 role="content">
186 <title>Contents</title>
187
188 <segmentedlist>
189 <segtitle>Installed Program</segtitle>
190 <segtitle>Installed Library</segtitle>
191 <segtitle>Installed Directories</segtitle>
192
193<!-- EDITORS NOTE:
194 vte installs a file into /etc/profile.d (/etc/profile.d/vte.sh) so that
195 the environment is suitable for running with it's quirks. Another one
196 is now installed as of 0.60.1 (/etc/profile.d/vte.csh) to support
197 the 'tcsh' shell.
198 As of 4/27/2020, we've elected to remove this.
199-->
200 <seglistitem>
201 <seg>
202 vte-2.&vte-nano;
203 </seg>
204 <seg>
205 libvte-2.&vte-nano;.so
206 </seg>
207 <seg>
208 /usr/include/vte-2.&vte-nano; and
209 (optional) /usr/share/doc/vte-&vte-version;
210 </seg>
211 </seglistitem>
212 </segmentedlist>
213
214 <variablelist>
215 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
216 <?dbfo list-presentation="list"?>
217 <?dbhtml list-presentation="table"?>
218
219 <varlistentry id="vte291">
220 <term><command>vte-2.&vte-nano;</command></term>
221 <listitem>
222 <para>
223 is a test application for the <application>VTE</application>
224 libraries
225 </para>
226 <indexterm zone="vte vte291">
227 <primary sortas="b-vte2-&vte-nano;">vte-2.&vte-nano;</primary>
228 </indexterm>
229 </listitem>
230 </varlistentry>
231
232 <varlistentry id="libvte291">
233 <term><filename class="libraryfile">libvte-2.&vte-nano;.so</filename></term>
234 <listitem>
235 <para>
236 is a library which implements a terminal emulator
237 widget for <application>GTK+ 3</application>
238 </para>
239 <indexterm zone="vte libvte291">
240 <primary sortas="c-libvte2-&vte-nano;">libvte-2.&vte-nano;.so</primary>
241 </indexterm>
242 </listitem>
243 </varlistentry>
244
245 </variablelist>
246
247 </sect2>
248
249</sect1>
Note: See TracBrowser for help on using the repository browser.