Changeset 590724d


Ignore:
Timestamp:
11/18/2010 01:21:28 AM (13 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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:
1ef3927
Parents:
a1813d08
Message:

Added a patch to the Guile instructions to fix breakage using newer compilers, also fixed the documentation installation instructions

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • general/prog/guile.xml

    ra1813d08 r590724d  
    5656    </itemizedlist>
    5757
    58     <!-- <bridgehead renderas="sect3">Additional Downloads</bridgehead>
     58    <bridgehead renderas="sect3">Additional Downloads</bridgehead>
    5959    <itemizedlist spacing="compact">
    6060      <listitem>
    6161        <para>Required patch: <ulink
    62         url="&patch-root;/guile-&guile-version;-gcc4-1.patch"/></para>
    63       </listitem>
    64       <listitem>
    65         <para>Required patch: <ulink
    66         url="&patch-root;/guile-&guile-version;-slib-1.patch"/></para>
    67       </listitem>
    68     </itemizedlist> -->
     62        url="&patch-root;/guile-&guile-version;-snarf-1.patch"/></para>
     63      </listitem>
     64    </itemizedlist>
    6965
    7066    <bridgehead renderas="sect3">Guile Dependencies</bridgehead>
     
    9187make</userinput></screen> -->
    9288
    93 <screen><userinput>./configure --prefix=/usr &amp;&amp;
     89<screen><userinput>patch -Np1 -i ../guile-&guile-version;-snarf-1.patch &amp;&amp;
     90./configure --prefix=/usr &amp;&amp;
    9491make &amp;&amp;
    9592
     
    9895makeinfo --plaintext -o doc/ref/guile.txt   doc/ref/guile.texi   &amp;&amp;
    9996makeinfo --plaintext -o doc/tutorial/guile-tut.txt \
    100                         doc/tutorial/guile-tut.texi</userinput></screen>
     97                        doc/tutorial/guile-tut.texi              &amp;&amp;
     98
     99for DIRNAME in goops r5rs ref tutorial
     100do
     101  make -k -C doc/${DIRNAME} html
     102done &amp;&amp;
     103unset DIRNAME</userinput></screen>
    101104
    102105    <para>If you have <xref linkend="tetex"/> installed and wish to
    103     build alternate formats of the documentation, issue the following
    104     commands:</para>
     106    build alternate formats (PDF and postscript) of the documentation, issue
     107    the following commands:</para>
    105108
    106109<screen><userinput>for DIRNAME in goops r5rs ref tutorial
    107110do
    108   make -k -C doc/$DIRNAME pdf ps html
     111  make -k -C doc/${DIRNAME} pdf ps
    109112done &amp;&amp;
    110113unset DIRNAME</userinput></screen>
     
    122125for DIRNAME in goops r5rs ref tutorial
    123126do
    124   install -v -m755 -d /usr/share/doc/${PACKAGE_NAME}-${PACKAGE_VERSION}/$DIRNAME &amp;&amp;
    125   install -v -m644    doc/$DIRNAME/*.txt \
    126                       /usr/share/doc/${PACKAGE_NAME}-${PACKAGE_VERSION}/$DIRNAME
     127  install -v -m755 -d /usr/share/doc/guile-&guile-version;/${DIRNAME} &amp;&amp;
     128  install -v -m644    doc/${DIRNAME}/*.txt \
     129                      /usr/share/doc/guile-&guile-version;/${DIRNAME} &amp;&amp;
     130  if [ -d             doc/${DIRNAME}/${DIRNAME}.html ]; then
     131    cp -v -R          doc/${DIRNAME}/${DIRNAME}.html \
     132                      /usr/share/doc/guile-&guile-version;/${DIRNAME}
     133  fi &amp;&amp;
    127134done &amp;&amp;
     135
     136install -v -m644  doc/goops/hierarchy.* \
     137                  /usr/share/doc/guile-&guile-version;/goops          &amp;&amp;
     138cp -v -R          doc/ref/guile.html \
     139                  /usr/share/doc/guile-&guile-version;/ref            &amp;&amp;
     140cp -v -R          doc/tutorial/guile-tut.html \
     141                  /usr/share/doc/guile-&guile-version;/tutorial       &amp;&amp;
    128142unset DIRNAME</userinput></screen>
    129143
     
    134148<screen role="root"><userinput>for DIRNAME in goops r5rs ref tutorial
    135149do
    136   install -v -m755 -d /usr/share/doc/guile-&guile-version;/$DIRNAME/html &amp;&amp;
    137   install -v -m644    doc/$DIRNAME/*.{pdf,ps,dvi} \
    138                       /usr/share/doc/guile-&guile-version;/$DIRNAME      &amp;&amp;
    139   if [ -d             doc/$DIRNAME/$DIRNAME.html ]; then
    140     install -v -m644  doc/$DIRNAME/$DIRNAME.html/* \
    141                       /usr/share/doc/guile-&guile-version;/$DIRNAME/html
    142   fi
    143 done &amp;&amp;
    144 
    145 install -v -m644 doc/goops/hierarchy.{eps,png} \
    146                  /usr/share/doc/guile-&guile-version;/goops    &amp;&amp;
    147 install -v -m644 doc/ref/guile.html/* \
    148                  /usr/share/doc/guile-&guile-version;/ref/html &amp;&amp;
    149 install -v -m644 doc/tutorial/guile-tut.html/* \
    150                  /usr/share/doc/guile-&guile-version;/tutorial/html</userinput></screen>
     150  install -v -m644 doc/${DIRNAME}/*.{pdf,ps,dvi} \
     151                   /usr/share/doc/guile-&guile-version;/${DIRNAME}
     152done</userinput></screen>
     153
    151154  </sect2>
    152 
    153   <!-- Commenting these out (as well as the actual build command) because they
    154        are the default. Examine configure.(ac,in) and you will see that if not
    155        specified, all 3 of these options are enabled by default.
    156   <sect2 role="commands">
    157     <title>Command Explanations</title>
    158 
    159     <para><option>-enable-posix</option>: Enable Posix interfaces.</para>
    160 
    161     <para><option>-enable-networking</option>: Enable networking interfaces.</para>
    162 
    163     <para><option>-enable-regex</option>: Enable regular expression interfaces.</para>
    164 
    165   </sect2>
    166   -->
    167155
    168156  <sect2 role="content">
  • introduction/welcome/changelog.xml

    ra1813d08 r590724d  
    4545      <para>November 18th, 2010</para>
    4646      <itemizedlist>
     47        <listitem>
     48          <para>[randy] - Added a patch to the Guile instructions to fix
     49          breakage using newer compilers, also fixed the documentation
     50          installation instructions.</para>
     51        </listitem>
    4752        <listitem>
    4853          <para>[ken] - Updated to openssl-1.0.0b to fix CVE-2010-3864 (fixes ticket
Note: See TracChangeset for help on using the changeset viewer.