source: gnome/platform/vte.xml@ 5c9d6e2c

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 5c9d6e2c was 46a7b287, checked in by Douglas R. Reno <renodr@…>, 18 months ago

Update to vte-0.70.2

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