Changeset 6e08e9c0 for general


Ignore:
Timestamp:
08/16/2014 11:39:09 PM (10 years ago)
Author:
Fernando de Oliveira <fernando@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.6, 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, krejzi/svn, 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:
e242b9a
Parents:
543a2c8
Message:

Parted-3.2 fails to build with --disable-device-mapper. Reported and fixed by Ken M.
Update to SQLite-3.8.6.
Update to git-2.1.0. Modified docs and man instructions.
MIT Kerberos V5-1.12.2: update gpg2, fix configure, install instructions and other parts.
Samba-4.1.11: promote libxslt-1.1.28 to Recommended.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/prog/git.xml

    r543a2c8 r6e08e9c0  
    99  <!ENTITY git-download-http "&git-root;/git-&git-version;.tar.xz">
    1010  <!ENTITY git-download-ftp  "ftp://ftp.kernel.org/pub/software/scm/git/git-&git-version;.tar.xz">
    11   <!ENTITY git-md5sum        "0caa9c54bb04612062d21823163ecb13">
    12   <!ENTITY git-size          "3.3 MB">
    13   <!ENTITY git-buildsize     "269 MB (additional 13 MB for downloaded docs and man pages, or 24 MB building docs and man pages)">
    14   <!ENTITY git-time          "0.7 SBU (additional 5.5 SBU for tests or 2.5 SBU for docs and man build)
    15 ">
     11  <!ENTITY git-md5sum        "47b1f55d9a16be112f7ae2c778a9b30c">
     12  <!ENTITY git-size          "3.4 MB">
     13  <!ENTITY git-buildsize     "208 MB (additional 14 MB for downloaded docs and man pages, or 27 MB building docs and man pages)">
     14  <!ENTITY git-time          " 0.7 SBU (additional 9.6 SBU for tests or 2.8 SBU for docs and man build)">
    1615]>
    1716
     
    145144
    146145    <para>
     146      You can build the man pages and/or html docs, or
     147      use downloaded ones. If you choose to build them, use next two following
     148      instructions.
     149    </para>
     150
     151    <para>
    147152      If you have installed <ulink
    148153      url="http://www.methods.co.nz/asciidoc/">AsciiDoc</ulink> you can
     
    174179<screen role="root"><userinput>make install</userinput></screen>
    175180
    176     <para>
    177       If you created the man pages, install them as the
     181<!-- ==== Method 1 for docs ====== -->
     182    <bridgehead renderas="sect3">If you created the man pages and/or html docs</bridgehead>
     183
     184    <para>
     185      Install the man pages as
    178186      <systemitem class="username">root</systemitem> user:
    179187    </para>
     
    182190
    183191    <para>
    184       If you created the html docs, install them as the
     192      Install the html docs as
    185193      <systemitem class="username">root</systemitem> user:
    186194    </para>
    187195
    188 <screen role="root"><userinput>make htmldir=/usr/share/doc/git-&git-version; install-html              &amp;&amp;
    189 mkdir -p /usr/share/doc/git-&git-version;/man-pages/{html,text}         &amp;&amp;
    190 mv       /usr/share/doc/git-&git-version;/{git*.txt,man-pages/text}     &amp;&amp;
    191 mv       /usr/share/doc/git-&git-version;/{git*.,index.,man-pages/}html &amp;&amp;
    192 mkdir    /usr/share/doc/git-&git-version;/technical/{html,text}         &amp;&amp;
    193 mv       /usr/share/doc/git-&git-version;/technical/{*.txt,text}        &amp;&amp;
    194 mv       /usr/share/doc/git-&git-version;/technical/{*.,}html           &amp;&amp;
    195 mkdir    /usr/share/doc/git-&git-version;/howto/{html,text}             &amp;&amp;
    196 mv       /usr/share/doc/git-&git-version;/howto/{*.txt,text}            &amp;&amp;
    197 mv       /usr/share/doc/git-&git-version;/howto/{*.,}html</userinput></screen>
    198 
    199     <para>
    200       Alternatively, If you downloaded the man pages untar them as the
     196<screen role="root"><userinput>make htmldir=/usr/share/doc/git-&git-version; install-html</userinput></screen>
     197
     198<!-- ==== Method 2 for docs ====== -->
     199    <bridgehead renderas="sect3">If you downloaded the man pages and/or html docs</bridgehead>
     200
     201    <para>
     202      If you downloaded the man pages untar them as the
    201203      <systemitem class="username">root</systemitem> user:
    202204    </para>
     
    215217
    216218find /usr/share/doc/git-&git-version; -type d -exec chmod 755 {} \;     &amp;&amp;
    217 find /usr/share/doc/git-&git-version; -type f -exec chmod 644 {} \;     &amp;&amp;
    218 
    219 mv       /usr/share/doc/git-&git-version;/{git*.txt,man-pages/text}     &amp;&amp;
     219find /usr/share/doc/git-&git-version; -type f -exec chmod 644 {} \;</userinput></screen>
     220
     221<!-- ==== Reorganize docs ====== -->
     222    <bridgehead renderas="sect3">Reorganize man pages and/or html docs (both methods)</bridgehead>
     223
     224    <para>
     225      For both methods, reorganize the files, as
     226      <systemitem class="username">root</systemitem> user:
     227    </para>
     228
     229<screen role="root"><userinput>mv       /usr/share/doc/git-&git-version;/{git*.txt,man-pages/text}     &amp;&amp;
    220230mv       /usr/share/doc/git-&git-version;/{git*.,index.,man-pages/}html &amp;&amp;
    221231mkdir    /usr/share/doc/git-&git-version;/technical/{html,text}         &amp;&amp;
     
    270280      permissions in the shipped documentation tar file.
    271281    </para>
    272 
    273     <para><option>--libexecdir=/usr/lib</option>: This option puts the
    274     <filename class="directory">git-core</filename> directory in
    275     <filename class="directory">/usr/lib</filename> instead of
    276     <filename class="directory">/usr/libexec</filename> in accordance
    277     with the old version of the FHS used before LFS-7.5.</para>
    278282
    279283  </sect2>
Note: See TracChangeset for help on using the changeset viewer.