Changeset acaf298 for general


Ignore:
Timestamp:
09/14/2003 01:03:54 AM (21 years ago)
Author:
Larry Lawrence <larry@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 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, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
7cdb9a45
Parents:
0710da49
Message:

updated gdbm intro

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

Location:
general/genlib
Files:
1 added
8 edited

Legend:

Unmodified
Added
Removed
  • general/genlib/gdbm/gdbm-config.xml

    r0710da49 racaf298  
    11<sect2>
    2 <title>Configuring gdbm</title>
     2<title>Configuring <application>gdbm</application></title>
    33
    44<sect3><title>Configuration Information</title>
  • general/genlib/gdbm/gdbm-desc.xml

    r0710da49 racaf298  
    22<title>Contents</title>
    33
    4 <para>The gdbm package contains <filename>libgdbm</filename> libraries.</para>
     4<para>The <application>gdbm</application> package contains <filename>libgdbm</filename> libraries.</para>
    55
    66</sect2>
     
    99
    1010<sect3><title>gdbm libraries</title>
    11 <para>gdbm libraries contain functions that perform database routines
    12 using extendible hashing.</para></sect3>
     11<para><filename>libgdbm</filename> libraries contain functions that perform
     12database routines using extendible hashing.</para></sect3>
    1313
    1414
  • general/genlib/gdbm/gdbm-exp.xml

    r0710da49 racaf298  
    22<title>Command explanations</title>
    33
    4 <para><userinput>--infoprefix=/usr/share/info
    5 --mandir=/usr/share/man</userinput> : These switches set the
    6 documentation directory to <filename>/usr/share</filename> instead of
    7 <filename>/usr</filename>.</para>
     4<para><command>--infodir=/usr/share/info --mandir=/usr/share/man</command> : These switches set the documentation directory to <filename>/usr/share
     5</filename> instead of <filename>/usr</filename>.</para>
    86
    9 <para><userinput>BINOWN=root BINGRP=root</userinput> : This command
     7<para><command>BINOWN=root BINGRP=root</command> : This command
    108changes the file ownership to root instead of the bin user.</para>
    119
  • general/genlib/gdbm/gdbm-inst.xml

    r0710da49 racaf298  
    11<sect2>
    2 <title>Installation of gdbm</title>
     2<title>Installation of <application>gdbm</application></title>
    33
    4 <para>Install gdbm by running the following commands:</para>
     4<para>Install <application>gdbm</application> by running the following commands:
     5</para>
    56
    6 <para><screen><userinput>./configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man &amp;&amp;
     7<screen><userinput><command>./configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man &amp;&amp;
    78make &amp;&amp;
    8 make BINOWN=root BINGRP=root install</userinput></screen></para>
     9make BINOWN=root BINGRP=root install</command></userinput></screen>
    910
    1011<para>In addition, you may need to install the compatibility
     
    1213Install the compatibility headers by running the following command:</para>
    1314
    14 <para><screen><userinput>make BINOWN=root BINGRP=root install-compat</userinput></screen></para>
     15<screen><userinput><command>make BINOWN=root BINGRP=root install-compat</command></userinput></screen>
    1516
    1617</sect2>
  • general/genlib/gdbm/gdbm-intro.xml

    r0710da49 racaf298  
    11<sect2>
    2 <title>Introduction to gdbm</title>
     2<title>Introduction to <application>gdbm</application></title>
    33
    4 <screen>Download location (HTTP):       <ulink url="&gdbm-download-http;"/>
    5 Download location (FTP):        <ulink url="&gdbm-download-ftp;"/>
    6 Version used:                   &gdbm-version;
    7 Package size:                   &gdbm-size;
    8 Estimated Disk space required:  &gdbm-buildsize;</screen>
     4<para>The <application>gdbm</application> package contains a dbm library. This
     5is useful for database routines that use extendible hashing.</para>
    96
    10 <para>The gdbm package contains a dbm library. This is useful for
    11 database routines that use extendible hashing.</para>
     7<sect3><title>Package information</title>
     8<itemizedlist spacing='compact'>
     9<listitem><para>Download (HTTP): <ulink
     10url="&gdbm-download-http;"/></para></listitem>
     11<listitem><para>Download (FTP): <ulink
     12url="&gdbm-download-ftp;"/></para></listitem>
     13<listitem><para>Download size: &gdbm-size;</para></listitem>
     14<listitem><para>Estimated Disk space required:
     15&gdbm-buildsize;</para></listitem>
     16<listitem><para>Estimated build time:
     17&gdbm-time;</para></listitem></itemizedlist>
     18</sect3>
    1219
    1320
  • general/genlib/gdbm/gdbm.ent

    r0710da49 racaf298  
    55<!ENTITY gdbm-desc SYSTEM "gdbm-desc.xml">
    66<!ENTITY gdbm-config SYSTEM "gdbm-config.xml">
    7 <!ENTITY gdbm-buildsize "1.7 MB">
     7<!ENTITY gdbm-buildsize "4.1 MB">
    88<!ENTITY gdbm-version "1.8.3">
    99<!ENTITY gdbm-download-http "http://www.ibiblio.org/pub/gnu/gdbm/gdbm-1.8.3.tar.gz">
    1010<!ENTITY gdbm-download-ftp "ftp://ftp.gnu.org/gnu/gdbm/gdbm-1.8.3.tar.gz">
    1111<!ENTITY gdbm-size "228 KB">
    12 <!ENTITY gdbm-time "0.15 SBU">
     12<!ENTITY gdbm-time "0.08 SBU">
  • general/genlib/gmp.xml

    r0710da49 racaf298  
    55&gmp-intro;
    66&gmp-inst;
     7&gmp-exp;
    78&gmp-desc;
    89
  • general/genlib/gmp/gmp-inst.xml

    r0710da49 racaf298  
    55</para>
    66
    7 <screen><userinput><command>./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info &amp;&amp;
     7<screen><userinput><command>./configure --prefix=/usr --infodir=/usr/share/info  --mandir=/usr/share/man &amp;&amp;
    88make &amp;&amp;
    99make install</command></userinput></screen>
Note: See TracChangeset for help on using the changeset viewer.