Changeset 0882c90


Ignore:
Timestamp:
12/21/2004 05:25:57 PM (19 years ago)
Author:
Randy McMurchy <randy@…>
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, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
ce4eef0
Parents:
fb6fb185
Message:

Updated to cpio-2.6

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rfb6fb185 r0882c90  
    124124<!ENTITY pciutils-version             "2.1.11">
    125125<!ENTITY pkgconfig-version            "0.15.0">
    126 <!ENTITY cpio-version                 "2.5">
     126<!ENTITY cpio-version                 "2.6">
    127127<!ENTITY mc-version                   "4.6.0">
    128128<!ENTITY sysstat-version              "5.0.6">
  • general/sysutils/cpio.xml

    rfb6fb185 r0882c90  
    77<!ENTITY cpio-download-http "http://ftp.gnu.org/pub/gnu/cpio/cpio-&cpio-version;.tar.gz">
    88<!ENTITY cpio-download-ftp "ftp://ftp.gnu.org/pub/gnu/cpio/cpio-&cpio-version;.tar.gz">
    9 <!ENTITY cpio-size "188 KB">
    10 <!ENTITY cpio-buildsize "1 MB">
    11 <!ENTITY cpio-time "0.06 SBU">
    12 
     9<!ENTITY cpio-size "448 KB">
     10<!ENTITY cpio-buildsize "5.4 MB">
     11<!ENTITY cpio-time "0.12 SBU">
    1312]>
    1413
     
    2322<sect2>
    2423<title>Introduction to <application>cpio</application></title>
    25                                                                                
    26                                                                                
     24
    2725<para>The <application>cpio</application> package contains
    2826tools for archiving.</para>
    29                                                                                
     27
    3028<sect3><title>Package information</title>
    3129<itemizedlist spacing='compact'>
     
    3533url="&cpio-download-ftp;"/></para></listitem>
    3634<listitem><para>Download size: &cpio-size;</para></listitem>
    37 <listitem><para>Estimated Disk space required:
     35<listitem><para>Estimated disk space required:
    3836&cpio-buildsize;</para></listitem>
    3937<listitem><para>Estimated build time:
    4038&cpio-time;</para></listitem></itemizedlist>
    4139</sect3>
    42                                                                                
    43                                                                                
     40
    4441</sect2>
    4542
    4643<sect2>
    4744<title>Installation of <application>cpio</application></title>
    48                                                                                
     45
    4946<para>Install <application>cpio</application> by running the following commands:
    5047</para>
    51                                                                                
    52 <screen><userinput><command>./configure --prefix=/usr --libexecdir=/tmp/cpio \
    53     --bindir=/bin &amp;&amp;
     48
     49<screen><userinput><command>sed -i -e "s/invalid_arg/argmatch_invalid/" src/mt.c &amp;&amp;
     50./configure CPIO_MT_PROG=mt --prefix=/usr \
     51    --bindir=/bin --libexecdir=/tmp \
     52    --with-rmt=/usr/sbin/rmt &amp;&amp;
    5453make &amp;&amp;
    55 make install &amp;&amp;
    56 rm -rf /tmp/cpio</command></userinput></screen>
    57                                                                                
     54make install</command></userinput></screen>
     55
    5856</sect2>
    5957
    6058<sect2>
    6159<title>Command explanations</title>
    62                                                                                
    63 <para><parameter>--libexec=/tmp/cpio</parameter>: This command installs
    64 <command>rmt</command> to <filename class="directory">/tmp/cpio</filename> so
    65 that it can be removed. The <command>rmt</command> executable is already
    66 installed by the <application>tar</application> package in
    67 <acronym>LFS</acronym>.</para>
    68                                                                                
    69 <para><parameter>--bindir=/bin</parameter>: This command installs
    70 <command>cpio</command> to <filename class="directory">/bin</filename> instead
    71 of <filename class="directory">/usr/bin</filename> as per
     60
     61<para><command>sed -i -e "s/invalid_arg/argmatch_invalid/" src/mt.c</command>:
     62This command fixes a build problem in the <command>mt</command> program.</para>
     63
     64<para><parameter>CPIO_MT_PROG=mt</parameter>: This parameter forces the
     65building and installation of the <command>mt</command> program.</para>
     66
     67<para><parameter>--bindir=/bin</parameter>: This parameter installs
     68<command>cpio</command> to <filename class="directory">/bin</filename> instead 
     69of <filename class="directory">/usr/bin</filename> as per 
    7270<acronym>FHS</acronym> guidelines.</para>
    73                                                                                
     71
     72<para><parameter>--libexecdir=/tmp</parameter>: This parameter is used so
     73that <filename class='directory'>/usr/libexec</filename> is not created.</para>
     74
     75<para><parameter>--with-rmt=/usr/sbin/rmt</parameter>: This parameter inhibits
     76building the <command>rmt</command> program as it is already installed by the
     77<application>tar</application> package in <acronym>LFS</acronym>.</para>
     78
    7479</sect2>
    7580
    7681<sect2>
    7782<title>Contents</title>
    78                                                                                
    79 <para>The <application>cpio</application> package contains <command>cpio
    80 </command> and <command>mt</command>.</para>
    81                                                                                
     83
     84<para>The <application>cpio</application> package contains
     85<command>cpio</command> and <command>mt</command>.</para>
     86
    8287</sect2>
    83                                                                                
     88
    8489<sect2><title>Description</title>
    85                                                                                
     90
    8691<sect3><title>cpio</title>
    87 <para><command>cpio</command> copies files to and from archives.</para></sect3>                                                                               
     92<para><command>cpio</command> copies files to and from archives.</para></sect3>
     93
    8894<sect3><title>mt</title>
    89 <para><command>mt</command> controls magnetic tape drive operations.</para></sect3>
    90                                                                                
    91 <!--
    92 <sect3><title>rmt</title>
    93 <para><command>rmt</command> controls remote magnetic tape drive operations.</para></sect3>
    94 -->
    95                                                                                
     95<para><command>mt</command> controls magnetic tape drive
     96operations.</para></sect3>
     97
    9698</sect2>
    9799
  • introduction/welcome/changelog.xml

    rfb6fb185 r0882c90  
    2323<itemizedlist>
    2424
    25 <listitem><para>December 21st, 2004 [randy]: Updated to
    26 KOffice-1.3.5.</para></listitem>
     25<listitem><para>December 21st, 2004 [randy]: Updated to KOffice-1.3.5 and
     26cpio-2.6.</para></listitem>
    2727
    2828<listitem><para>December 20th, 2004 [bdubbs]: Updated license of book to
Note: See TracChangeset for help on using the changeset viewer.