expect.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-tools-expect" xreflabel="Expect" role="wrap">
  7. <title>Expect-&expect-version;</title>
  8. <?dbhtml filename="expect.html"?>
  9. <indexterm zone="ch-tools-expect"><primary sortas="a-Expect">Expect</primary></indexterm>
  10. <sect2 role="package"><title/>
  11. <para>The Expect package contains a program for carrying out scripted dialogues
  12. with other interactive programs.</para>
  13. <segmentedlist>
  14. <segtitle>&buildtime;</segtitle>
  15. <segtitle>&diskspace;</segtitle>
  16. <seglistitem><seg>0.1 SBU</seg><seg>3.9 MB</seg></seglistitem>
  17. </segmentedlist>
  18. <segmentedlist>
  19. <segtitle>Expect installation depends on</segtitle>
  20. <seglistitem><seg>Bash, Binutils, Coreutils, Diffutils,
  21. GCC, Glibc, Grep, Make, Sed, Tcl</seg></seglistitem>
  22. </segmentedlist>
  23. </sect2>
  24. <sect2 role="installation">
  25. <title>Installation of Expect</title>
  26. <para>First fix a bug that can result in bogus failures during the GCC test
  27. suite run:</para>
  28. <screen><userinput>patch -Np1 -i ../expect-&expect-version;-spawn-1.patch</userinput></screen>
  29. <para>Now prepare Expect for compilation:</para>
  30. <screen><userinput>./configure --prefix=/tools --with-tcl=/tools/lib --with-x=no</userinput></screen>
  31. <para>The meaning of the configure options:</para>
  32. <variablelist>
  33. <varlistentry>
  34. <term><parameter>--with-tcl=/tools/lib</parameter></term>
  35. <listitem><para>This ensures that
  36. the configure script finds the Tcl installation in our temporary tools location.
  37. We don't want it to find an existing one that may possibly reside on the host
  38. system.</para></listitem>
  39. </varlistentry>
  40. <varlistentry>
  41. <term><parameter>--with-x=no</parameter></term>
  42. <listitem><para>This tells the configure
  43. script not to search for Tk (the Tcl GUI component) or the X Window System
  44. libraries, both of which may possibly reside on the host system.</para></listitem>
  45. </varlistentry>
  46. </variablelist>
  47. <para>Build the package:</para>
  48. <screen><userinput>make</userinput></screen>
  49. <para>(If you want to test the results, then issue:
  50. <userinput>make test</userinput>. However, the Expect test suite is known to
  51. experience failures under certain host conditions that are not within our
  52. control. Therefore, test suite failures here are not surprising, and are not
  53. considered critical.)</para>
  54. <para>And install it:</para>
  55. <screen><userinput>make SCRIPTS="" install</userinput></screen>
  56. <para>The meaning of the make parameter:</para>
  57. <variablelist>
  58. <varlistentry>
  59. <term><parameter>SCRIPTS=""</parameter></term>
  60. <listitem><para>This prevents installation
  61. of the supplementary expect scripts which are not needed.</para></listitem>
  62. </varlistentry>
  63. </variablelist>
  64. <para>You can now remove the source directories of both Tcl and Expect.</para>
  65. </sect2>
  66. <sect2 id="contents-expect" role="content"><title>Contents of Expect</title>
  67. <segmentedlist>
  68. <segtitle>Installed program</segtitle>
  69. <segtitle>Installed library</segtitle>
  70. <seglistitem><seg>expect</seg><seg>libexpect&expect-version;.a</seg></seglistitem>
  71. </segmentedlist>
  72. <variablelist><title>Short description</title>
  73. <varlistentry id="expect">
  74. <term><command>expect</command></term>
  75. <listitem>
  76. <indexterm zone="ch-tools-expect expect"><primary sortas="b-expect">expect</primary></indexterm>
  77. <para><quote>talks</quote> to other interactive
  78. programs according to a script.</para>
  79. </listitem>
  80. </varlistentry>
  81. </variablelist>
  82. </sect2>
  83. </sect1>