Ignore:
Timestamp:
02/25/2014 07:00:30 PM (10 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 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:
13103ed
Parents:
014d750f
Message:

Rewrite Qt pages
Add corrections for some paths (e.g. man pages)
Tags

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/prog/guile.xml

    r014d750f rec7940be  
    9999    </para>
    100100
    101 <screen><userinput>./configure --prefix=/usr    \
    102             --disable-static \
    103             --docdir=/usr/share/doc/guile-&guile-version; &amp;&amp;
     101<screen><userinput>./configure --prefix=/usr --disable-static &amp;&amp;
    104102make      &amp;&amp;
    105103make html &amp;&amp;
     
    109107
    110108    <para>
    111       To test the results, issue: <command>make check</command>.
    112     </para>
    113 
    114     <para>
    115       Now, as the <systemitem class="username">root</systemitem> user:
    116     </para>
    117 
    118 <screen role="root"><userinput>make install      &amp;&amp;
    119 make install-html &amp;&amp;
    120 
    121 mv /usr/share/doc/guile-&guile-version;/{guile.html,ref} &amp;&amp;
    122 mv /usr/share/doc/guile-&guile-version;/r5rs{.html,}     &amp;&amp;
    123 
    124 find examples -name "Makefile*" -exec rm {} \; &amp;&amp;
    125 cp -vR examples   /usr/share/doc/guile-&guile-version;   &amp;&amp;
    126 
    127 for DIRNAME in r5rs ref
    128 do
    129   install -v -m644  doc/${DIRNAME}/*.txt \
    130                     /usr/share/doc/guile-&guile-version;/${DIRNAME}
     109      If you have <xref linkend="texlive"/> installed and wish to build alternate
     110      formats (PDF and postscript) of the documentation, issue the following
     111      commands:
     112    </para>
     113
     114<screen><userinput>for DIRNAME in r5rs ref; do
     115   make -k -C doc/${DIRNAME} pdf ps
    131116done &amp;&amp;
    132117unset DIRNAME</userinput></screen>
     118
     119    <para>
     120      To test the results, issue: <command>make check</command>.
     121    </para>
     122
     123    <para>
     124      Now, as the <systemitem class="username">root</systemitem> user:
     125    </para>
     126
     127<screen role="root"><userinput>make install &amp;&amp;
     128
     129find examples -name "Makefile*" -delete      &amp;&amp;
     130install -v -dm755 /usr/share/doc/guile-&guile-version; &amp;&amp;
     131cp -vR examples   /usr/share/doc/guile-&guile-version; &amp;&amp;
     132
     133for DIRNAME in r5rs ref; do
     134  install -v -dm755 /usr/share/doc/guile-&guile-version;/${DIRNAME} &amp;&amp;
     135 
     136  install -v -m644  doc/${DIRNAME}/*.txt \
     137                    /usr/share/doc/guile-&guile-version;/${DIRNAME} &amp;&amp;
     138 
     139  if [ -d           doc/${DIRNAME}/${DIRNAME}.html ]; then
     140    cp -Rv          doc/${DIRNAME}/${DIRNAME}.html \
     141                    /usr/share/doc/guile-&guile-version;/${DIRNAME}
     142  fi
     143done
     144
     145cp -vR doc/ref/guile.html /usr/share/doc/guile-&guile-version;/ref</userinput></screen>
     146
     147    <para>
     148      If you built the alternate formats of the documentation, install them
     149      using the following commands issued by the
     150      <systemitem class="username">root</systemitem> user:
     151    </para>
     152
     153<screen role="root"><userinput>for DIRNAME in r5rs ref
     154do
     155  install -v -m644 doc/${DIRNAME}/*.{pdf,ps,dvi} \
     156                   /usr/share/doc/guile-&guile-version;/${DIRNAME}
     157done</userinput></screen>
    133158
    134159  </sect2>
Note: See TracChangeset for help on using the changeset viewer.