Changeset cbdad90b


Ignore:
Timestamp:
11/12/2014 07:57:23 PM (9 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.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
8c9a5b9
Parents:
53da153
Message:

Make man pages for qca and libreoffice accessible

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general/genlib/qca.xml

    r53da153 rcbdad90b  
    9898cd    build &amp;&amp;
    9999
    100 cmake -DCMAKE_INSTALL_PREFIX=&qt4-dir; \
    101       -DCMAKE_BUILD_TYPE=Release     \
    102       -DQT4_BUILD=ON                 \
    103       ..                             &amp;&amp;
     100cmake -DCMAKE_INSTALL_PREFIX=&qt4-dir;            \
     101      -DCMAKE_BUILD_TYPE=Release                \
     102      -DQT4_BUILD=ON                            \
     103      -DQCA_MAN_INSTALL_DIR:PATH=/usr/share/man \
     104      ..                                        &amp;&amp;
    104105
    105106make</userinput></screen>
     
    121122    <para><parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is
    122123    used to force building with Qt4 even if Qt5 is found.</para>
     124
     125    <para><parameter>-DQCA_MAN_INSTALL_DIR:PATH=/usr/share/man</parameter>:
     126    Install the qca man page in the normal location.</para>
    123127
    124128  </sect2>
  • introduction/welcome/changelog.xml

    r53da153 rcbdad90b  
    4949      <itemizedlist>
    5050        <listitem>
     51          <para>[bdubbs] - Make man pages for qca and libreoffice
     52          accessible. Fixes
     53          <ulink url="&blfs-ticket-root;5807">#5807</ulink>.</para>
     54        </listitem>
     55        <listitem>
    5156          <para>[fernando] - Update to firefox-33.1. Fixes
    5257          <ulink url="&blfs-ticket-root;5806">#5806</ulink>.</para>
  • xsoft/office/libreoffice.xml

    r53da153 rcbdad90b  
    4343]>
    4444
    45 <sect1 id="libreoffice" xreflabel="LibreOffice-&libreoffice-version;">
     45<sect1 id="libreoffice" xreflabel="LibreOffice-&libreoffice-dlversion;">
    4646  <?dbhtml filename="libreoffice.html"?>
    4747
     
    5151  </sect1info>
    5252
    53   <title>LibreOffice-&libreoffice-version;</title>
     53  <title>LibreOffice-&libreoffice-dlversion;</title>
    5454
    5555  <indexterm zone="libreoffice">
     
    445445
    446446    <para>
    447        If installed in <filename class="directory">/opt/libreoffice-&libreoffice-dlversion;</filename>
    448        and the icons in the new items of the desktop menu are not properly displayed,
    449        optionally run the following commands, as
    450        <systemitem class="username">root</systemitem> user (it may be necessary
    451        to logout the session, before the icons appear):
    452     </para>
    453 
    454 <screen role="root"><userinput>mkdir -pv /usr/share/pixmaps &amp;&amp;
    455 
    456 for i in writer base calc draw impress math startcenter writer
    457 do
    458   ln -svf /opt/libreoffice-&libreoffice-dlversion;/share/icons/hicolor/32x32/apps/libreoffice-$i.png \
    459           /usr/share/pixmaps/
    460 done
    461 unset i</userinput></screen>
     447       If installed in <filename
     448       class="directory">/opt/libreoffice-&libreoffice-dlversion;</filename>
     449       and the icons in the new items of the desktop menu are not properly
     450       displayed, optionally run the following commands, as <systemitem
     451       class="username">root</systemitem> user (it may be necessary to log out
     452       of the current session, before the icons appear):
     453    </para>
     454
     455<screen role="root"><userinput>if [ "$LO_PREFIX" != "/usr" ]; then
     456   mkdir -pv /usr/share/pixmaps
     457
     458   for i in writer base calc draw impress math startcenter writer
     459   do
     460     ln -svf $LO_PREFIX/share/icons/hicolor/32x32/apps/libreoffice-$i.png \
     461             /usr/share/pixmaps/
     462   done
     463   unset i
     464fi</userinput></screen>
     465
     466    <para>
     467       If installed in <filename
     468       class="directory">/opt/libreoffice-&libreoffice-dlversion;</filename>,
     469       create links to the man pages.   Be sure the LO_PREFIX environment
     470       variable is defined for the root user.
     471    </para>
     472
     473<screen role="root"><userinput>if [ "$LO_PREFIX" != "/usr" ]; then
     474   for i in $LO_PREFIX/share/man/man1/*; do
     475      ln -svf $i /usr/share/man/man1/
     476   done
     477   unset i
     478fi</userinput></screen>
    462479
    463480  </sect2>
Note: See TracChangeset for help on using the changeset viewer.