source: gnome/platform/vte.xml@ 3f2db3a6

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 3f2db3a6 was 3f2db3a6, checked in by Pierre Labastie <pierre.labastie@…>, 19 months ago

Remove sect1info tags

They only contain a date tag that is nowhere used.

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