source: gnome/platform/vte.xml@ d278ced

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules 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 d278ced was f0061d7, checked in by Bruce Dubbs <bdubbs@…>, 8 years ago

Update to gnome apps 3.30.2 -- gnome-desktop, dconf-editor,

cheese, eog, epiphany, file-roller, and gnome-terminal.

Update to vte=0.44.2.
Update to gvfs-1.28.2.
Add extra-cmake-modules as a required dependency of phonon.
Update to ImageMagick-7.0.1-3.
Update to gucharmap-8.0.1.
Update to gtk+-3.20.4.

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

  • Property mode set to 100644
File size: 5.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/0.44/vte-&vte-version;.tar.xz">
8 <!ENTITY vte-download-ftp "&gnome-download-ftp;/vte/0.44/vte-&vte-version;.tar.xz">
9 <!ENTITY vte-md5sum "eca8f8a9d9f9bb8e9d592d0acfeec015">
10 <!ENTITY vte-size "952 KB">
11 <!ENTITY vte-buildsize "21 MB (with tests)">
12 <!ENTITY vte-time "0.5 SBU (with tests)">
13
14 <!-- For "Contents" and "Short Descriptions" sections -->
15 <!ENTITY vte-nano "91">
16]>
17
18<sect1 id="vte" xreflabel="VTE-&vte-version;">
19 <?dbhtml filename="vte.html"?>
20
21 <sect1info>
22 <othername>$LastChangedBy$</othername>
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 &lfs79_checked;
41 &gcc6_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"/> and
82 <xref linkend="libxml2"/>
83 </para>
84
85 <bridgehead renderas="sect4">Recommended</bridgehead>
86 <para role="recommended">
87 <xref linkend="gobject-introspection"/>
88 </para>
89
90 <bridgehead renderas="sect4">Optional</bridgehead>
91 <para role="optional">
92 <xref linkend="gnutls"/>,
93 <xref linkend="gtk-doc"/>,
94 <xref linkend="vala"/>, and
95 <ulink url="http://glade.gnome.org/">Glade</ulink>
96 </para>
97
98 <para condition="html" role="usernotes">User Notes:
99 <ulink url="&blfs-wiki;/vte"/>
100 </para>
101 </sect2>
102
103 <sect2 role="installation">
104 <title>Installation of VTE</title>
105
106 <para>
107 Install <application>VTE</application> by running the following
108 commands:
109 </para>
110
111<screen><userinput>sed -i '/Werror/d' configure.ac &amp;&amp;
112autoreconf &amp;&amp;
113
114./configure --prefix=/usr \
115 --sysconfdir=/etc \
116 --disable-static \
117 --enable-introspection &amp;&amp;
118make</userinput></screen>
119
120 <para>
121 To test the results, issue <command>make check</command>.
122 </para>
123
124 <para>
125 Now, as the <systemitem class="username">root</systemitem> user:
126 </para>
127
128<screen role="root"><userinput>make install</userinput></screen>
129
130 </sect2>
131
132 <sect2 role="commands">
133 <title>Command Explanations</title>
134
135 <para>
136 <command>sed ... configure.ac</command>: This command
137 removes -Werror options that prevent the build from completing.
138 </para>
139
140 <para>
141 <option>--enable-introspection</option>: This switch enables
142 <application>Gobject Introspection</application> bindings.
143 Remove if you don't have <xref linkend="gobject-introspection"/>
144 installed.
145 </para>
146
147 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
148 href="../../xincludes/static-libraries.xml"/>
149
150 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
151 href="../../xincludes/gtk-doc-rebuild.xml"/>
152
153 </sect2>
154
155 <sect2 role="content">
156 <title>Contents</title>
157
158 <segmentedlist>
159 <segtitle>Installed Program</segtitle>
160 <segtitle>Installed Library</segtitle>
161 <segtitle>Installed Directories</segtitle>
162
163 <seglistitem>
164 <seg>
165 vte-2.&vte-nano;
166 </seg>
167 <seg>
168 libvte-2.&vte-nano;.so
169 </seg>
170 <seg>
171 /usr/include/vte-2.&vte-nano; and
172 /usr/share/gtk-doc/html/vte-2.&vte-nano;
173 </seg>
174 </seglistitem>
175 </segmentedlist>
176
177 <variablelist>
178 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
179 <?dbfo list-presentation="list"?>
180 <?dbhtml list-presentation="table"?>
181
182 <varlistentry id="vte291">
183 <term><command>vte-2.&vte-nano;</command></term>
184 <listitem>
185 <para>
186 is a test application for the <application>VTE</application>
187 libraries.
188 </para>
189 <indexterm zone="vte vte291">
190 <primary sortas="b-vte2-&vte-nano;">vte-2.&vte-nano;</primary>
191 </indexterm>
192 </listitem>
193 </varlistentry>
194
195 <varlistentry id="libvte291">
196 <term><filename class="libraryfile">libvte-2.&vte-nano;.so</filename></term>
197 <listitem>
198 <para>
199 is a library which implements a terminal emulator
200 widget for <application>GTK+ 3</application>.
201 </para>
202 <indexterm zone="vte libvte291">
203 <primary sortas="c-libvte2-&vte-nano;">libvte-2.&vte-nano;.so</primary>
204 </indexterm>
205 </listitem>
206 </varlistentry>
207
208 </variablelist>
209
210 </sect2>
211
212</sect1>
Note: See TracBrowser for help on using the repository browser.