source: gnome/platform/vte.xml@ 37a43a5a

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 37a43a5a was fb25573, checked in by Pierre Labastie <pierre.labastie@…>, 3 years ago

Updates

thunderbird-91.1.1
pidgin-2.14.7
curl-7.79.1
vte-0.66.0

  • Property mode set to 100644
File size: 6.8 KB
RevLine 
[dabe4b0]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
[fb25573]7 <!ENTITY vte-download-http "https://gitlab.gnome.org/GNOME/vte/-/archive/&vte-version;/vte-&vte-version;.tar.bz2">
[3f41de0]8 <!ENTITY vte-download-ftp " ">
[fb25573]9 <!ENTITY vte-md5sum "2aca6831c1af291bc7bf11ceca603aeb">
10 <!ENTITY vte-size "491 KB">
11 <!ENTITY vte-buildsize "13 MB (with tests)">
[3b339ddc]12 <!ENTITY vte-time "0.3 SBU (using parallelism=4; with tests)">
[0eda65a1]13 <!-- Consolidating Tests/No Tests in GNOME sections for consistency. -->
[8607733e]14
15 <!-- For "Contents" and "Short Descriptions" sections -->
16 <!ENTITY vte-nano "91">
[dabe4b0]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
[f0922fc9]40 &lfs110a_checked;
[dabe4b0]41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
[e67449e]45 <para>
[dabe4b0]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">
[8558044]80 <xref linkend="gtk3"/>,
[9ce4262f]81 <xref linkend="libxml2"/>, and
82 <xref linkend="pcre2"/>
[dabe4b0]83 </para>
84
85 <bridgehead renderas="sect4">Recommended</bridgehead>
86 <para role="recommended">
[0aa72821]87 <xref linkend="icu"/>,
88 <xref linkend="gnutls"/>,
89 <xref linkend="gobject-introspection"/>, and
[d43c7a1]90 <xref linkend="vala"/>
[dabe4b0]91 </para>
92
93 <bridgehead renderas="sect4">Optional</bridgehead>
94 <para role="optional">
[fb25573]95 <xref linkend="fribidi"/> and
96 <xref linkend="gtk-doc"/>
97<!-- <xref linkend="gtk4"/>
98 The -Dgtk4=true option just returns
99 'not supported on this branch; use git master' -->
[dabe4b0]100 </para>
101
102 <para condition="html" role="usernotes">User Notes:
103 <ulink url="&blfs-wiki;/vte"/>
104 </para>
105 </sect2>
106
107 <sect2 role="installation">
108 <title>Installation of VTE</title>
[04903340]109
[dabe4b0]110 <para>
111 Install <application>VTE</application> by running the following
112 commands:
113 </para>
114
[5e473061]115<screen revision="systemd"><userinput>mkdir build &amp;&amp;
[5d314e0]116cd build &amp;&amp;
117
[adf17153]118meson --prefix=/usr --buildtype=release -Dfribidi=false .. &amp;&amp;
[5e473061]119ninja</userinput></screen>
120
121<screen revision="sysv"><userinput>mkdir build &amp;&amp;
122cd build &amp;&amp;
123
[adf17153]124meson --prefix=/usr \
125 --buildtype=release \
126 -Dfribidi=false \
127 -D_systemd=false .. &amp;&amp;
[5e473061]128ninja</userinput></screen>
[dabe4b0]129
130 <para>
[5d314e0]131 To test the results, issue <command>ninja test</command>.
[dabe4b0]132 </para>
133
134 <para>
135 Now, as the <systemitem class="username">root</systemitem> user:
136 </para>
137
[7792591]138<screen role="root"><userinput>ninja install &amp;&amp;
139rm -v /etc/profile.d/vte.*</userinput></screen>
[dabe4b0]140
141 </sect2>
142
143 <sect2 role="commands">
144 <title>Command Explanations</title>
145
[adf17153]146 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
147 href="../../xincludes/meson-buildtype-release.xml"/>
148
[f71dd24]149 <para>
150 <command>rm -v /etc/profile.d/vte.*</command>: This command removes two
151 files installed in /etc/profile.d that have no use on a LFS system.
152 </para>
153
[aa41434]154 <para>
[fb25573]155 <parameter>-Dfribidi=false</parameter>: Omit this switch if you want
156 to enable bidirectional capabilities.
[aa41434]157 </para>
158
[5d314e0]159 <para>
160 <option>-Dgnutls=false</option>: Add this switch if you do not
[ec047148]161 want to enable GnuTLS support.
[5d314e0]162 </para>
[3b79812]163
[db16fa0]164 <para>
[5d314e0]165 <option>-Dvapi=false</option>: Add this switch if you do not
166 want to enable vala bindings.
[db16fa0]167 </para>
[dabe4b0]168
[5d314e0]169 <para>
[8558044]170 <option>-Ddocs=true</option>: Add this switch if wish to
[5d314e0]171 build the documentation.
172 </para>
[dabe4b0]173
[fb25573]174 <!-- Uncomment once vte supports it (only git branch "master" supports it
175 as of vte-0.66.0)
[9d31900]176 <para>
177 <option>-Dgtk4=true</option>: Add this switch to build the GTK4 widget.
178 </para>
179 -->
[dabe4b0]180 </sect2>
181
182 <sect2 role="content">
183 <title>Contents</title>
184
185 <segmentedlist>
186 <segtitle>Installed Program</segtitle>
187 <segtitle>Installed Library</segtitle>
188 <segtitle>Installed Directories</segtitle>
189
[0eda65a1]190<!-- EDITORS NOTE:
191 vte installs a file into /etc/profile.d (/etc/profile.d/vte.sh) so that
[876948d]192 the environment is suitable for running with it's quirks. Another one
193 is now installed as of 0.60.1 (/etc/profile.d/vte.csh) to support
194 the 'tcsh' shell.
[7792591]195 As of 4/27/2020, we've elected to remove this.
[0eda65a1]196-->
[dabe4b0]197 <seglistitem>
198 <seg>
[d8f0d47]199 vte-2.&vte-nano;
[dabe4b0]200 </seg>
201 <seg>
[4393df4]202 libvte-2.&vte-nano;.so
[dabe4b0]203 </seg>
204 <seg>
[8607733e]205 /usr/include/vte-2.&vte-nano; and
[fb25573]206 (optional) /usr/share/gtk-doc/html/vte-2.&vte-nano;
[dabe4b0]207 </seg>
208 </seglistitem>
209 </segmentedlist>
210
211 <variablelist>
212 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
213 <?dbfo list-presentation="list"?>
214 <?dbhtml list-presentation="table"?>
215
[38fb1e3]216 <varlistentry id="vte291">
[4393df4]217 <term><command>vte-2.&vte-nano;</command></term>
[dabe4b0]218 <listitem>
219 <para>
220 is a test application for the <application>VTE</application>
[4c24eb0a]221 libraries
[dabe4b0]222 </para>
[38fb1e3]223 <indexterm zone="vte vte291">
[4393df4]224 <primary sortas="b-vte2-&vte-nano;">vte-2.&vte-nano;</primary>
[dabe4b0]225 </indexterm>
226 </listitem>
227 </varlistentry>
228
[38fb1e3]229 <varlistentry id="libvte291">
[4393df4]230 <term><filename class="libraryfile">libvte-2.&vte-nano;.so</filename></term>
[dabe4b0]231 <listitem>
232 <para>
233 is a library which implements a terminal emulator
[4c24eb0a]234 widget for <application>GTK+ 3</application>
[dabe4b0]235 </para>
[38fb1e3]236 <indexterm zone="vte libvte291">
[4393df4]237 <primary sortas="c-libvte2-&vte-nano;">libvte-2.&vte-nano;.so</primary>
[dabe4b0]238 </indexterm>
239 </listitem>
240 </varlistentry>
241
242 </variablelist>
243
244 </sect2>
245
246</sect1>
Note: See TracBrowser for help on using the repository browser.