source: gnome/core/vte.xml@ 935f473

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 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 935f473 was 935f473, checked in by Randy McMurchy <randy@…>, 19 years ago

Added a sed command to the VTE instructions to fix broken Home and End keys in the xterm termcap file

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

  • Property mode set to 100644
File size: 3.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/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 "4d7a3674df5b8be7f1adffa981c1fc3d">
10<!ENTITY vte-size "888 KB">
11<!ENTITY vte-buildsize "23.6 MB">
12<!ENTITY vte-time "0.67 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"/> (with <xref linkend="sgml-dtd-3"/> installed)
51and <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 &amp;&amp;
66make install</command></userinput></screen>
67
68</sect2>
69
70<sect2>
71<title>Command explanations</title>
72
73<para><command>sed -i -e ...</command>: The Home and End keys are broken in
74the <filename>xterm</filename> termcap file. This <command>sed</command>
75command fixes them.</para>
76
77<para><parameter>--libexecdir=/usr/sbin</parameter>: This switch puts
78libexec files in <filename class="directory">/usr/sbin</filename> instead of
79<filename class="directory">/usr/libexec</filename>.</para>
80
81<para><option>--disable-gtk-doc</option>: This switch prevents the
82building of documentation.</para>
83
84</sect2>
85
86<sect2>
87<title>Contents</title>
88
89<para>The <application>VTE</application> package contains
90<filename class="libraryfile">libvte</filename> libraries,
91<command>vte</command>,
92<command>gnome-pty-helper</command>,
93auxillary <application>VTE</application> programs, scripts and
94the <filename class="libraryfile">vtemodule</filename>
95<application>Python</application> module.</para>
96
97</sect2>
98
99<sect2><title>Description</title>
100
101<sect3><title>vte libraries</title>
102<para><filename class="libraryfile">libvte</filename> libraries provide the
103functions necessary to implement a <quote>termcap file</quote> for terminal
104emulators.</para></sect3>
105
106<sect3><title>vte</title>
107<para><command>vte</command> is a test application for the
108<application>VTE</application> libraries.</para></sect3>
109
110<sect3><title>gnome-pty-helper</title>
111<para><command>gnome-pty-helper</command> is a setuid helper for opening
112ptys.</para></sect3>
113
114</sect2>
115
116</sect1>
117
Note: See TracBrowser for help on using the repository browser.