source: gnome/platform/vte.xml@ 04f0df3e

11.0 11.1 11.2 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 upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 04f0df3e was 2b2715fd, checked in by Bruce Dubbs <bdubbs@…>, 3 years ago

Update to vte-0.64.1

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