source: gnome/core/vte.xml@ c64a089

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since c64a089 was 03bf4d7, checked in by Randy McMurchy <randy@…>, 19 years ago

Updated to VTE-0.11.13

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

  • Property mode set to 100644
File size: 3.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7<!ENTITY vte-download-http "http://ftp.gnome.org/pub/GNOME/sources/vte/0.11/vte-&vte-version;.tar.bz2">
8<!ENTITY vte-download-ftp "ftp://ftp.gnome.org/pub/GNOME/sources/vte/0.11/vte-&vte-version;.tar.bz2">
9<!ENTITY vte-md5sum "5eb73c7de433fb6e53ac4378df9d23b5">
10<!ENTITY vte-size "952 KB">
11<!ENTITY vte-buildsize "24 MB">
12<!ENTITY vte-time "0.7 SBU">
13]>
14
15<sect1 id="vte" xreflabel="VTE-&vte-version;">
16<sect1info>
17<othername>$LastChangedBy$</othername>
18<date>$Date$</date>
19</sect1info>
20<?dbhtml filename="vte.html"?>
21<title>VTE-&vte-version;</title>
22
23<sect2>
24<title>Introduction to <application>VTE</application></title>
25
26<para>The <application>VTE</application> package contains a termcap file
27implementation for terminal emulators.</para>
28
29<sect3><title>Package information</title>
30<itemizedlist spacing='compact'>
31<listitem><para>Download (HTTP): <ulink
32url="&vte-download-http;"/></para></listitem>
33<listitem><para>Download (FTP): <ulink
34url="&vte-download-ftp;"/></para></listitem>
35<listitem><para>MD5 sum: &vte-md5sum;</para></listitem>
36<listitem><para>Download size: &vte-size;</para></listitem>
37<listitem><para>Estimated disk space required:
38&vte-buildsize;</para></listitem>
39<listitem><para>Estimated build time:
40&vte-time;</para></listitem></itemizedlist>
41</sect3>
42
43<sect3><title><application>VTE</application> dependencies</title>
44<sect4><title>Required</title>
45<para><xref linkend="gtk2"/> and
46<xref linkend="python"/></para>
47</sect4>
48
49<sect4><title>Optional</title>
50<para><xref linkend="gtk-doc"/> and
51<ulink url="http://www.pygtk.org/">PyGTK</ulink></para>
52</sect4>
53</sect3>
54
55</sect2>
56
57<sect2>
58<title>Installation of <application>VTE</application></title>
59
60<para>Install <application>VTE</application> by running the following
61commands:</para>
62
63<screen><userinput><command>sed -i -e 's%\\177:%&amp;kh=\\EOH:@7=\\EOF:%g' termcaps/xterm &amp;&amp;
64./configure --prefix=/usr --libexecdir=/usr/sbin --disable-gtk-doc &amp;&amp;
65make</command></userinput></screen>
66
67<para>This package does not come with a test suite.</para>
68
69<para>Now, as the root user:</para>
70
71<screen><userinput role='root'><command>make install</command></userinput></screen>
72
73</sect2>
74
75<sect2>
76<title>Command explanations</title>
77
78<para><command>sed -i -e ...</command>: The Home and End keys are broken in
79the <filename>xterm</filename> termcap file. This <command>sed</command>
80command fixes them.</para>
81
82<para><parameter>--libexecdir=/usr/sbin</parameter>: This switch puts
83libexec files in <filename class="directory">/usr/sbin</filename> instead of
84<filename class="directory">/usr/libexec</filename>.</para>
85
86<para><option>--disable-gtk-doc</option>: This switch prevents the
87building of documentation. Remove it if you have
88<application>GTK-Doc</application> installed and wish to rebuild the
89documentation.</para>
90
91</sect2>
92
93<sect2>
94<title>Contents</title>
95
96<para>The <application>VTE</application> package contains
97<filename class="libraryfile">libvte</filename> libraries,
98<command>vte</command>,
99<command>gnome-pty-helper</command>,
100auxillary <application>VTE</application> programs, scripts and
101the <filename class="libraryfile">vtemodule</filename>
102<application>Python</application> module.</para>
103
104</sect2>
105
106<sect2><title>Description</title>
107
108<sect3><title>vte libraries</title>
109<para><filename class="libraryfile">libvte</filename> libraries provide the
110functions necessary to implement a <quote>termcap file</quote> for terminal
111emulators.</para></sect3>
112
113<sect3><title>vte</title>
114<para><command>vte</command> is a test application for the
115<application>VTE</application> libraries.</para></sect3>
116
117<sect3><title>gnome-pty-helper</title>
118<para><command>gnome-pty-helper</command> is a setuid helper for opening
119ptys.</para></sect3>
120
121</sect2>
122
123</sect1>
Note: See TracBrowser for help on using the repository browser.