source: gnome/platform/vte.xml@ a24390dd

10.1 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 a24390dd was 8467ea8a, checked in by Tim Tassonis <stuff@…>, 3 years ago

Update to VTE-0.62.2.

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

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