Changeset 0d1379a for basicnet


Ignore:
Timestamp:
04/12/2003 01:58:10 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, v1_0, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
8e6d39f1
Parents:
262ffc5d
Message:

more upper to lower filenames, edits

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

Location:
basicnet
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • basicnet/djb/daemontools/daemontools-exp.xml

    r262ffc5d r0d1379a  
    1616
    1717<para><userinput>cd admin/daemontools-0.76</userinput> : First off, the
    18 package is unpacked in an "admin" directory. You will find the actual
     18package is unpacked in an <filename>admin</filename> directory. You will find the actual
    1919packages two directory levels below this.</para>
    2020
     
    2222compiles the source and puts the binaries in a command directory.</para>
    2323
    24 <para>Since we are installing the binaries in /usr/sbin rather than creating
     24<para>Since we are installing the binaries in
     25<filename>/usr/sbin</filename> rather than creating
    2526a non-standard /command directory, several paths have to be changed:</para>
    2627<para><screen><userinput>sed 's|command|usr/sbin|' boot.inittab &gt; boot.inittab~</userinput>
    2728<userinput>mv boot.inittab~ boot.inittab</userinput></screen></para>
    28 <para>In boot.inittab, /command/svscanboot is changed to /usr/sbin/svscanboot.</para>
     29<para>In <filename>boot.inittab</filename>,
     30<filename>/command/svscanboot</filename> is changed to
     31<filename>/usr/sbin/svscanboot</filename>.</para>
    2932
    3033<para><screen><userinput>sed -e 's|/command:/usr/local/bin:/usr/local/sbin:||' \</userinput>
     
    3235<userinput>    -e 's|/service|/etc/service|g' svscanboot &gt; svscanboot~ &amp;&amp;</userinput></screen></para>
    3336<para>Here various paths are adjusted in the svscanboot script. In our setup svscan
    34 will check the /etc/service directory instead of the /service directory for
     37will check the <filename>/etc/service</filename> directory instead of
     38the <filename>/service</filename> directory for
    3539daemons to run.</para>
    3640
    3741<para><userinput>cp * /usr/sbin</userinput> : We must manually copy the
    38 binaries to the /usr/sbin directory.</para>
     42binaries to the <filename>/usr/sbin</filename> directory.</para>
    3943
    4044<para><screen><userinput>cat /etc/inittab boot.inittab &gt; /etc/inittab~</userinput>
    4145<userinput>mv -f /etc/inittab~ /etc/inittab</userinput></screen>
    42 These commands append a line to /etc/inittab so that init will launch
     46These commands append a line to <filename>/etc/inittab</filename> so that init will launch
    4347the svscanboot script.</para>
    4448
  • basicnet/djb/daemontools/daemontools-inst.xml

    r262ffc5d r0d1379a  
    44<para>Install daemontools by running the following commands:</para>
    55
    6 <para><screen><userinput>patch -Np1 -i ../daemontools-0.76.errno.patch &amp;&amp;
    7 cd admin/daemontools-0.76 &amp;&amp;
     6<para><screen><userinput>cd admin/daemontools-0.76 &amp;&amp;
     7patch -Np1 -i ../../daemontools-0.76.errno.patch &amp;&amp;
    88package/compile &amp;&amp;
    99cd package &amp;&amp;
  • basicnet/djb/daemontools/daemontools-man-exp.xml

    r262ffc5d r0d1379a  
    55to save space, but it isn't needed for the man pages to work.</para>
    66
    7 <para><userinput>package/compile</userinput> : This command actually
    8 compiles the source and puts the binaries in a command directory.</para>
    9 
    107</sect2>
    118
  • basicnet/djb/daemontools/daemontools-man-inst.xml

    r262ffc5d r0d1379a  
    66<para><screen><userinput>cd daemontools-man &amp;&amp;
    77gzip -9 *.8 &amp;&amp;
     8package/compile &amp;&amp;
    89cp *.8.gz /usr/share/man/man8/</userinput></screen></para>
    910</sect2>
  • basicnet/djb/daemontools/daemontools.ent

    r262ffc5d r0d1379a  
    44<!ENTITY daemontools-exp SYSTEM "daemontools-exp.xml">
    55<!ENTITY daemontools-desc SYSTEM "daemontools-desc.xml">
    6 <!ENTITY daemontools-buildsize "approximately 1 MB">
     6<!ENTITY daemontools-buildsize "1.8 MB">
    77<!ENTITY daemontools-version "0.76">
    88<!ENTITY daemontools-download-http "http://cr.yp.to/daemontools/daemontools-0.76.tar.gz" >
     
    1515<!ENTITY daemontools-man-exp SYSTEM "daemontools-man-exp.xml">
    1616<!ENTITY daemontools-man-desc SYSTEM "daemontools-man-desc.xml">
    17 <!ENTITY daemontools-man-buildsize "approximately 1 MB">
     17<!ENTITY daemontools-man-buildsize "76 KB">
    1818<!ENTITY daemontools-man-version "0.76">
    1919<!ENTITY daemontools-man-download-http "http://smarden.org/pape/djb/manpages/daemontools-0.76-man.tar.gz" >
  • basicnet/djb/ucspi-tcp/ucspi-tcp-exp.xml

    r262ffc5d r0d1379a  
    66sed 's/bin/sbin/' hier.c &gt; hier.c~
    77mv hier.c~ hier.c</userinput></screen>
    8 These commands change the installation directory to /usr/sbin from the default
    9 of /usr/local/bin. Since these tools are used in conjunction with daemons,
     8These commands change the installation directory to
     9<filename>/usr/sbin</filename> from the default
     10of <filename>/usr/local/bin</filename>. Since these tools are used in conjunction with daemons,
    1011they don't make much sense in general user directories. However, some of the
    1112example programs and the tcpclient program might be of use to non-root users.
     
    1415<screen><userinput>cd /usr/sbin
    1516mv tcpclient *@ mconnect delcr addcr tcpcat /usr/bin</userinput></screen>This
    16 will place the client related programs into /usr/bin for general use.</para>
     17will place the client related programs into <filename>/usr/bin</filename> for general use.</para>
    1718
    1819</sect2>
  • basicnet/djb/ucspi-tcp/ucspi-tcp.ent

    r262ffc5d r0d1379a  
    44<!ENTITY ucspi-tcp-exp SYSTEM "ucspi-tcp-exp.xml">
    55<!ENTITY ucspi-tcp-desc SYSTEM "ucspi-tcp-desc.xml">
    6 <!ENTITY ucspi-tcp-buildsize "199 KB">
     6<!ENTITY ucspi-tcp-buildsize "2 MB">
    77<!ENTITY ucspi-tcp-version "0.88">
    88<!ENTITY ucspi-tcp-download-http "http://cr.yp.to/ucspi-tcp/ucspi-tcp-0.88.tar.gz">
    99<!ENTITY ucspi-tcp-download-ftp "">
    10 <!ENTITY ucspi-tcp-size "53 KB">
     10<!ENTITY ucspi-tcp-size "56 KB">
  • basicnet/netlibs/curl/curl-desc.xml

    r262ffc5d r0d1379a  
    33
    44<para>The curl package contains <userinput>curl</userinput>, <userinput>curl-config</userinput> and the
    5 <userinput>curl library</userinput>.</para>
     5<filename>curl</filename> library.</para>
    66
    77</sect2>
Note: See TracChangeset for help on using the changeset viewer.