Ignore:
Timestamp:
08/03/2007 11:50:56 AM (17 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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
Children:
4fae3a22
Parents:
d0b331c
Message:

Updated to Guile-1.8.2, added a note to GnuCash that the instructions are now broken, commented out the entire GNOME-1.4 section

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/prog/guile.xml

    rd0b331c rdcd55b37  
    77  <!ENTITY guile-download-http "http://ftp.gnu.org/pub/gnu/guile/guile-&guile-version;.tar.gz">
    88  <!ENTITY guile-download-ftp  "ftp://ftp.gnu.org/pub/gnu/guile/guile-&guile-version;.tar.gz">
    9   <!ENTITY guile-md5sum        "c2ff2a2231f0cbb2e838dd8701a587c5">
    10   <!ENTITY guile-size          "3.0 MB">
    11   <!ENTITY guile-buildsize     "39.6 MB (additional 32.2 MB to install all the docs)">
    12   <!ENTITY guile-time          "1.1 SBU (includes building all documentation)">
     9  <!ENTITY guile-md5sum        "a4b64a992deae0532f8015bcc6c40784">
     10  <!ENTITY guile-size          "3.7 MB">
     11  <!ENTITY guile-buildsize     "49 MB (additional 40 MB to install all the docs)">
     12  <!ENTITY guile-time          "1.2 SBU (includes building all documentation)">
    1313]>
    1414
     
    5656    </itemizedlist>
    5757
    58     <bridgehead renderas="sect3">Additional Downloads</bridgehead>
     58    <!-- <bridgehead renderas="sect3">Additional Downloads</bridgehead>
    5959    <itemizedlist spacing="compact">
    6060      <listitem>
     
    6666        url="&patch-root;/guile-&guile-version;-slib-1.patch"/></para>
    6767      </listitem>
    68     </itemizedlist>
     68    </itemizedlist> -->
    6969
    7070    <bridgehead renderas="sect3">Guile Dependencies</bridgehead>
    7171
    72     <!--
    7372    <bridgehead renderas="sect4">Required</bridgehead>
    7473    <para role="required"><xref linkend="gmp"/></para>
    75     -->
    7674
    7775    <bridgehead renderas="sect4">Optional</bridgehead>
     
    8987    commands:</para>
    9088
    91 <screen><userinput>patch -Np1 -i ../guile-&guile-version;-gcc4-1.patch &amp;&amp;
    92 patch -Np1 -i ../guile-&guile-version;-slib-1.patch &amp;&amp;
    93 ./configure --prefix=/usr --with-threads &amp;&amp;
     89<screen><userinput>sed -i -e '20,$ d' \
     90       -e 's|slib)|&amp;)\n(load-from-path "slib/guile.init")|' \
     91    ice-9/slib.scm
     92
     93./configure --prefix=/usr &amp;&amp;
    9494make</userinput></screen>
    9595
    96     <para>If you have <application>teTeX</application> installed and wish to
     96    <para>If you have <xref linkend="tetex"/> installed and wish to
    9797    build alternate formats of the documentation, issue the following
    9898    commands:</para>
     
    102102  make -k -C doc/$DIRNAME pdf ps html
    103103done &amp;&amp;
     104
    104105makeinfo --plaintext -o doc/goops/goops.txt doc/goops/goops.texi &amp;&amp;
    105106makeinfo --plaintext -o doc/r5rs/r5rs.txt doc/r5rs/r5rs.texi &amp;&amp;
     
    107108makeinfo --plaintext -o doc/tutorial/guile-tut.txt \
    108109    doc/tutorial/guile-tut.texi &amp;&amp;
     110
    109111unset DIRNAME</userinput></screen>
    110112
     
    114116
    115117<screen role="root"><userinput>make install &amp;&amp;
     118
    116119find examples -name "Makefile*" -exec rm {} \; &amp;&amp;
    117120install -v -m755 -d /usr/share/doc/guile-&guile-version; &amp;&amp;
    118 cp -v -R examples /usr/share/doc/guile-&guile-version;</userinput></screen>
    119 
    120     <para>If you built the alternate formats of the documentation, install it
     121cp -v -R examples   /usr/share/doc/guile-&guile-version;</userinput></screen>
     122
     123    <para>If you built the alternate formats of the documentation, install them
    121124    using the following commands issued by the
    122125    <systemitem class="username">root</systemitem> user:</para>
     
    141144  </sect2>
    142145
     146  <sect2 role="commands">
     147    <title>Command Explanations</title>
     148
     149    <para><command>sed -i -e '20,$ d' -e '...' ice-9/slib.scm</command>:
     150    This command is used to modify the <application>Guile</application>
     151    <application>SLIB</application> initialization script. There are
     152    incompatibilities with newer versions of <application>SLIB</application>
     153    and this command modifes the script to use the installed
     154    <application>SLIB</application> script.</para>
     155
     156  </sect2>
     157
    143158  <sect2 role="content">
    144159    <title>Contents</title>
     
    151166      <seglistitem>
    152167        <seg>guile, guile-config, guile-snarf, and guile-tools</seg>
    153         <seg>libguile-ltdl.{so,a}, libguile-srfi-srfi-13-14-v-1.{so,a},
    154         libguile-srfi-srfi-4-v-1.{so,a}, libguile.{so,a},
    155         /libguilereadline-v-12.{so,a} and libqthreads.{so,a}</seg>
    156         <!-- <seg>libguile.{so,a}, libguilereadline-v-17.{so,a},
    157         libguile-srfi-srfi-13-14-v-3.{so,a}, libguile-srfi-srfi-1-v-3.{so,a},
    158         libguile-srfi-srfi-4-v-3.{so,a} and
    159         libguile-srfi-srfi-60-v-2.{so,a}</seg>-->
     168        <seg>libguile.{so,a}, libguile-srfi-srfi-*.{so,a} and
     169        /libguilereadline-v-17.{so,a}</seg>
    160170        <seg>/usr/include/guile, /usr/include/libguile,
    161171        /usr/share/doc/guile-&guile-version; and /usr/share/guile</seg>
Note: See TracChangeset for help on using the changeset viewer.