From 09fb7a09f1b6fc54c50658de94834b283d3e86fd Mon Sep 17 00:00:00 2001 From: Manuel Canales Esparcia Date: Tue, 17 Jan 2006 20:43:10 +0000 Subject: Indenting chapter 05, part 2 git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7281 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter05/expect.xml | 243 +++++++++++++++++++++++++++++---------------------- 1 file changed, 139 insertions(+), 104 deletions(-) (limited to 'chapter05/expect.xml') diff --git a/chapter05/expect.xml b/chapter05/expect.xml index 32662380c..49a53b6b7 100644 --- a/chapter05/expect.xml +++ b/chapter05/expect.xml @@ -1,129 +1,164 @@ - %general-entities; ]> + -Expect-&expect-version; - + + + Expect-&expect-version; + + + Expect + + + + -<indexterm zone="ch-tools-expect"><primary sortas="a-Expect">Expect</primary></indexterm> + <para>The Expect package contains a program for carrying out scripted + dialogues with other interactive programs.</para> -<sect2 role="package"><title/> -<para>The Expect package contains a program for carrying out scripted dialogues -with other interactive programs.</para> + <segmentedlist> + <segtitle>&buildtime;</segtitle> + <segtitle>&diskspace;</segtitle> -<segmentedlist> -<segtitle>&buildtime;</segtitle> -<segtitle>&diskspace;</segtitle> -<seglistitem><seg>0.1 SBU</seg><seg>4.0 MB</seg></seglistitem> -</segmentedlist> + <seglistitem> + <seg>0.1 SBU</seg> + <seg>4.0 MB</seg> + </seglistitem> + </segmentedlist> -<segmentedlist> -<segtitle>&dependencies;</segtitle> -<seglistitem><seg>Bash, Binutils, Coreutils, Diffutils, -GCC, Glibc, Grep, Make, Sed, and Tcl</seg></seglistitem> -</segmentedlist> -</sect2> + <segmentedlist> + <segtitle>&dependencies;</segtitle> -<sect2 role="installation"> -<title>Installation of Expect + + Bash, Binutils, Coreutils, Diffutils, GCC, Glibc, Grep, Make, + Sed, and Tcl + + -First, fix a bug that can result in false failures during the GCC test -suite run: + + + + Installation of Expect + + First, fix a bug that can result in false failures during the GCC test + suite run: patch -Np1 -i ../&expect-spawn-patch; -Now prepare Expect for compilation: + Now prepare Expect for compilation: ./configure --prefix=/tools --with-tcl=/tools/lib \ - --with-tclinclude=/tools/include --with-x=no - -The meaning of the configure options: - - - ---with-tcl=/tools/lib -This ensures that the configure script finds the Tcl installation in -the temporary tools location instead of possibly locating an existing -one on the host system. - - - ---with-tclinclude=/tools/include -This explicitly tells Expect where to find Tcl's internal headers. -Using this option avoids conditions where configure fails because -it cannot automatically discover the location of Tcl's headers. - - - ---with-x=no -This tells the configure script not to search for Tk -(the Tcl GUI component) or the X Window System libraries, both of -which may reside on the host system but will not exist in the temporary -environment. - - - -Build the package: + --with-tclinclude=/tools/include --with-x=no + + + The meaning of the configure options: + + + --with-tcl=/tools/lib + + This ensures that the configure script finds the Tcl + installation in the temporary tools location instead of possibly + locating an existing one on the host system. + + + + + --with-tclinclude=/tools/include + + This explicitly tells Expect where to find Tcl's internal + headers. Using this option avoids conditions where + configure fails because it cannot automatically + discover the location of Tcl's headers. + + + + + --with-x=no + + This tells the configure script not to search for Tk (the + Tcl GUI component) or the X Window System libraries, both of which + may reside on the host system but will not exist in the temporary + environment. + + + + + + Build the package: make -To test the results, issue: make test. -Note that the Expect test suite is known to experience failures under -certain host conditions that are not within our control. Therefore, -test suite failures here are not surprising and are not considered -critical. + To test the results, issue: make test. + Note that the Expect test suite is known to experience failures under + certain host conditions that are not within our control. Therefore, + test suite failures here are not surprising and are not considered + critical. -Install the package: + Install the package: make SCRIPTS="" install -The meaning of the make parameter: - - - -SCRIPTS="" -This prevents installation of the supplementary expect -scripts, which are not needed. - - - - - -Contents of Expect - - -Installed program -Installed library -expectlibexpect-&expect-lib-version;.a - - -Short Descriptions - - - - -expect - -Communicates with other interactive -programs according to a script -expect - - - - -libexpect-&expect-lib-version;.a - -Contains functions that allow Expect to be used as a Tcl extension or to -be used directly from C or C++ (without Tcl) -libexpect-&expect-lib-version; - - - - - + + The meaning of the make parameter: + + + SCRIPTS="" + + This prevents installation of the supplementary Expect + scripts, which are not needed. + + + + + + + + + Contents of Expect + + + Installed program + Installed library + + + expect + libexpect-&expect-lib-version;.a + + + + + Short Descriptions + + + + + expect + + Communicates with other interactive programs according + to a script + + expect + + + + + + libexpect-&expect-lib-version;.a + + Contains functions that allow Expect to be used as a Tcl + extension or to be used directly from C or C++ (without Tcl) + + libexpect-&expect-lib-version; + + + + + + + - -- cgit v1.2.3-54-g00ecf