source: gnome/platform/vte.xml@ ccded7e

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 ccded7e was 3f41de0, checked in by Xi Ruoyao <xry111@…>, 3 years ago

vte: fix download url

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

  • 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 "433791af36424da9d416f37bfffa47a0">
10 <!ENTITY vte-size "604 KB">
11 <!ENTITY vte-buildsize "13 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 <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 &lfs101_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="icu"/>,
89 <xref linkend="gnutls"/>,
90 <xref linkend="gobject-introspection"/>, and
91 <xref linkend="vala"/>
92 </para>
93
94 <bridgehead renderas="sect4">Optional</bridgehead>
95 <para role="optional">
96 <xref linkend="fribidi"/>,
97 <xref linkend="gtk-doc"/>, and
98 <xref linkend="gtk4"/>
99 <!-- Does not currently work unless you pass -Dgtk4=true to meson. However,
100 it's not looking for gtk-4, it's looking for gtk+-4, so it will still
101 fail to build for now.-->
102 </para>
103
104 <para condition="html" role="usernotes">User Notes:
105 <ulink url="&blfs-wiki;/vte"/>
106 </para>
107 </sect2>
108
109 <sect2 role="installation">
110 <title>Installation of VTE</title>
111
112 <para>
113 Install <application>VTE</application> by running the following
114 commands:
115 </para>
116
117<screen revision="systemd"><userinput>mkdir build &amp;&amp;
118cd build &amp;&amp;
119
120meson --prefix=/usr -Dfribidi=false .. &amp;&amp;
121ninja</userinput></screen>
122
123<screen revision="sysv"><userinput>mkdir build &amp;&amp;
124cd build &amp;&amp;
125
126meson --prefix=/usr -Dfribidi=false -D_systemd=false .. &amp;&amp;
127ninja</userinput></screen>
128
129 <para>
130 To test the results, issue <command>ninja test</command>.
131 </para>
132
133 <para>
134 Now, as the <systemitem class="username">root</systemitem> user:
135 </para>
136
137<screen role="root"><userinput>ninja install &amp;&amp;
138rm -v /etc/profile.d/vte.*</userinput></screen>
139
140 </sect2>
141
142 <sect2 role="commands">
143 <title>Command Explanations</title>
144
145 <para>
146 <command>rm -v /etc/profile.d/vte.*</command>: This command removes two
147 files installed in /etc/profile.d that have no use on a LFS system.
148 </para>
149
150 <para>
151 <parameter>-Dfribidi=false</parameter>: Omit this switch if want to enable
152 bidirectional capabilities.
153 </para>
154
155 <para>
156 <option>-Dgnutls=false</option>: Add this switch if you do not
157 want to enable GnuTLS support.
158 </para>
159
160 <para>
161 <option>-Dvapi=false</option>: Add this switch if you do not
162 want to enable vala bindings.
163 </para>
164
165 <para>
166 <option>-Ddocs=true</option>: Add this switch if wish to
167 build the documentation.
168 </para>
169
170 <!-- Uncomment once vte knows how to look for the proper gtk4
171 <para>
172 <option>-Dgtk4=true</option>: Add this switch to build the GTK4 widget.
173 </para>
174 -->
175 </sect2>
176
177 <sect2 role="content">
178 <title>Contents</title>
179
180 <segmentedlist>
181 <segtitle>Installed Program</segtitle>
182 <segtitle>Installed Library</segtitle>
183 <segtitle>Installed Directories</segtitle>
184
185<!-- EDITORS NOTE:
186 vte installs a file into /etc/profile.d (/etc/profile.d/vte.sh) so that
187 the environment is suitable for running with it's quirks. Another one
188 is now installed as of 0.60.1 (/etc/profile.d/vte.csh) to support
189 the 'tcsh' shell.
190 As of 4/27/2020, we've elected to remove this.
191-->
192 <seglistitem>
193 <seg>
194 vte-2.&vte-nano;
195 </seg>
196 <seg>
197 libvte-2.&vte-nano;.so
198 </seg>
199 <seg>
200 /usr/include/vte-2.&vte-nano; and
201 /usr/share/gtk-doc/html/vte-2.&vte-nano;
202 </seg>
203 </seglistitem>
204 </segmentedlist>
205
206 <variablelist>
207 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
208 <?dbfo list-presentation="list"?>
209 <?dbhtml list-presentation="table"?>
210
211 <varlistentry id="vte291">
212 <term><command>vte-2.&vte-nano;</command></term>
213 <listitem>
214 <para>
215 is a test application for the <application>VTE</application>
216 libraries
217 </para>
218 <indexterm zone="vte vte291">
219 <primary sortas="b-vte2-&vte-nano;">vte-2.&vte-nano;</primary>
220 </indexterm>
221 </listitem>
222 </varlistentry>
223
224 <varlistentry id="libvte291">
225 <term><filename class="libraryfile">libvte-2.&vte-nano;.so</filename></term>
226 <listitem>
227 <para>
228 is a library which implements a terminal emulator
229 widget for <application>GTK+ 3</application>
230 </para>
231 <indexterm zone="vte libvte291">
232 <primary sortas="c-libvte2-&vte-nano;">libvte-2.&vte-nano;.so</primary>
233 </indexterm>
234 </listitem>
235 </varlistentry>
236
237 </variablelist>
238
239 </sect2>
240
241</sect1>
Note: See TracBrowser for help on using the repository browser.