source: chapter05/expect.xml@ e747759

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since e747759 was e747759, checked in by Manuel Canales Esparcia <manuel@…>, 17 years ago

Added sect1info blocks to packages pages.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8366 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 5.4 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
8<sect1 id="ch-tools-expect" role="wrap">
9 <?dbhtml filename="expect.html"?>
10
11 <sect1info condition="script">
12 <productname>expect</productname>
13 <productnumber>&expect-version;</productnumber>
14 <address>&expect-url;</address>
15 </sect1info>
16
17 <title>Expect-&expect-version;</title>
18
19 <indexterm zone="ch-tools-expect">
20 <primary sortas="a-Expect">Expect</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The Expect package contains a program for carrying out scripted
27 dialogues with other interactive programs.</para>
28
29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
32
33 <seglistitem>
34 <seg>&expect-ch5-sbu;</seg>
35 <seg>&expect-ch5-du;</seg>
36 </seglistitem>
37 </segmentedlist>
38
39 </sect2>
40
41 <sect2 role="installation">
42 <title>Installation of Expect</title>
43
44 <para>First, fix a bug that can result in false failures during the GCC test
45 suite run:</para>
46
47<screen><userinput>patch -Np1 -i ../&expect-spawn-patch;</userinput></screen>
48
49 <para>Next, force Expect's configure script to use <filename>/bin/stty</filename>
50 instead of a <filename>/usr/local/bin/stty</filename> it may find on the host system.
51 This will ensure that our testsuite tools remain sane for the final builds of our
52 toolchain:</para>
53
54<screen><userinput>cp configure{,.bak}
55sed 's:/usr/local/bin:/bin:' configure.bak &gt; configure</userinput></screen>
56
57 <para>Now prepare Expect for compilation:</para>
58
59<screen><userinput>./configure --prefix=/tools --with-tcl=/tools/lib \
60 --with-tclinclude=/tools/include --with-x=no</userinput></screen>
61
62 <variablelist>
63 <title>The meaning of the configure options:</title>
64
65 <varlistentry>
66 <term><parameter>--with-tcl=/tools/lib</parameter></term>
67 <listitem>
68 <para>This ensures that the configure script finds the Tcl
69 installation in the temporary tools location instead of possibly
70 locating an existing one on the host system.</para>
71 </listitem>
72 </varlistentry>
73
74 <varlistentry>
75 <term><parameter>--with-tclinclude=/tools/include</parameter></term>
76 <listitem>
77 <para>This explicitly tells Expect where to find Tcl's internal
78 headers. Using this option avoids conditions where
79 <command>configure</command> fails because it cannot automatically
80 discover the location of Tcl's headers.</para>
81 </listitem>
82 </varlistentry>
83
84 <varlistentry>
85 <term><parameter>--with-x=no</parameter></term>
86 <listitem>
87 <para>This tells the configure script not to search for Tk (the
88 Tcl GUI component) or the X Window System libraries, both of which
89 may reside on the host system but will not exist in the temporary
90 environment.</para>
91 </listitem>
92 </varlistentry>
93
94 </variablelist>
95
96 <para>Build the package:</para>
97
98<screen><userinput>make</userinput></screen>
99
100 <para>To test the results, issue: <userinput>make test</userinput>.
101 Note that the Expect test suite is known to experience failures under
102 certain host conditions that are not within our control. Therefore,
103 test suite failures here are not surprising and are not considered
104 critical.</para>
105
106 <para>Install the package:</para>
107
108<screen><userinput>make SCRIPTS="" install</userinput></screen>
109
110 <variablelist>
111 <title>The meaning of the make parameter:</title>
112
113 <varlistentry>
114 <term><parameter>SCRIPTS=""</parameter></term>
115 <listitem>
116 <para>This prevents installation of the supplementary Expect
117 scripts, which are not needed.</para>
118 </listitem>
119 </varlistentry>
120
121 </variablelist>
122
123 </sect2>
124
125 <sect2 id="contents-expect" role="content">
126 <title>Contents of Expect</title>
127
128 <segmentedlist>
129 <segtitle>Installed program</segtitle>
130 <segtitle>Installed library</segtitle>
131
132 <seglistitem>
133 <seg>expect</seg>
134 <seg>libexpect-&expect-lib-version;.a</seg>
135 </seglistitem>
136 </segmentedlist>
137
138 <variablelist>
139 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
140 <?dbfo list-presentation="list"?>
141 <?dbhtml list-presentation="table"?>
142
143 <varlistentry id="expect">
144 <term><command>expect</command></term>
145 <listitem>
146 <para>Communicates with other interactive programs according
147 to a script</para>
148 <indexterm zone="ch-tools-expect expect">
149 <primary sortas="b-expect">expect</primary>
150 </indexterm>
151 </listitem>
152 </varlistentry>
153
154 <varlistentry id="libexpect">
155 <term><filename class="libraryfile">libexpect-&expect-lib-version;.a</filename></term>
156 <listitem>
157 <para>Contains functions that allow Expect to be used as a Tcl
158 extension or to be used directly from C or C++ (without Tcl)</para>
159 <indexterm zone="ch-tools-expect libexpect">
160 <primary sortas="c-libexpect-&expect-lib-version;">libexpect-&expect-lib-version;</primary>
161 </indexterm>
162 </listitem>
163 </varlistentry>
164
165 </variablelist>
166
167 </sect2>
168
169</sect1>
Note: See TracBrowser for help on using the repository browser.