Changeset 20a27fc


Ignore:
Timestamp:
04/06/2018 11:13:06 PM (6 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, 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:
fb73c7e
Parents:
406e5ffe
Message:

Update to pax-20161104

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

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r406e5ffe r20a27fc  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "05">                   <!-- Always 2 digits -->
     3<!ENTITY day          "06">                   <!-- Always 2 digits -->
    44<!ENTITY month        "04">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2018">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "April 5th, &year;">
     9<!ENTITY releasedate  "April 6th, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • general/sysutils/pax.xml

    r406e5ffe r20a27fc  
    55  %general-entities;
    66
    7   <!ENTITY pax-download-http "&sourceforge-dl;/heirloom/heirloom-&pax-version;.tar.bz2">
     7  <!ENTITY pax-download-http "http://pub.allbsd.org/MirOS/dist/mir/cpio/paxmirabilis-&pax-version;.cpio.gz">
    88  <!ENTITY pax-download-ftp  " ">
    9   <!ENTITY pax-md5sum        "d846be4b268b1d55b6ffcef847f09979">
    10   <!ENTITY pax-size          "977 KB">
    11   <!ENTITY pax-buildsize     "9.2 MB">
     9  <!ENTITY pax-md5sum        "51172547aa7447244ba1db5768cdcdfd">
     10  <!ENTITY pax-size          "152 KB">
     11  <!ENTITY pax-buildsize     "920 KB">
    1212  <!ENTITY pax-time          "less than 0.1 SBU">
    1313]>
     
    8686    </itemizedlist>
    8787
     88    <bridgehead renderas="sect3">Pax Dependencies</bridgehead>
     89
     90    <bridgehead renderas="sect4">Required</bridgehead>
     91    <para role="required">
     92      <xref linkend="cpio"/></para>
     93
    8894    <para condition="html" role="usernotes">
    8995      User Notes: <ulink url="&blfs-wiki;/pax"/>
     
    97103      This package has somewhat unusual installation instructions, because
    98104      <application>pax</application> is part of a larger set of utilities
    99       included in the same tarball. Issue the following commands:
     105      included in the same tarball. Issue the following commands to
     106      unpack and build the application:
    100107    </para>
    101108
    102 <screen><userinput>sed -i build/mk.config                   \
    103     -e '/LIBZ/s@ -Wl[^ ]*@@g'            \
    104     -e '/LIBBZ2/{s@^#@@;s@ -Wl[^ ]*@@g}' \
    105     -e '/BZLIB/s@0@1@'                   &amp;&amp;
     109<screen><userinput>gzip -dck paxmirabilis-20161104.cpio.gz | cpio -mid &amp;&amp;
     110cd pax &amp;&amp;
    106111
    107 make makefiles                           &amp;&amp;
    108 make -C libcommon                        &amp;&amp;
    109 make -C libuxre                          &amp;&amp;
    110 make -C cpio</userinput></screen>
     112sed -i '/stat.h/a #include &lt;sys/sysmacros.h&gt;' cpio.c gen_subs.c tar.c &amp;&amp;
     113
     114cc -O2 -DLONG_OFF_T -o pax -DPAX_SAFE_PATH=\"/bin\" *.c</userinput></screen>
    111115
    112116    <para>
     
    114118    </para>
    115119
    116 <screen role="root"><userinput>install -v -m755 cpio/pax_su3 /usr/bin/pax &amp;&amp;
    117 install -v -m644 cpio/pax.1 /usr/share/man/man1</userinput></screen>
     120<screen role="root"><userinput>install -v pax /bin &amp;&amp;
     121install -v pax.1 /usr/share/man/man1</userinput></screen>
    118122  </sect2>
    119123
     
    122126
    123127    <para>
    124       <command>sed ...</command>: This changes the configuration file
    125       <filename>build/mk.config</filename> so that the system zlib and
    126       libbz2 are used and linked as shared libraries.
    127     </para>
    128 
    129     <para>
    130       <command>make makefiles</command>: This command builds all the
    131       makefiles.
    132     </para>
    133 
    134     <para>
    135       <command>make -C lib...</command>: First builds the necessary libraries.
    136     </para>
    137 
    138     <para>
    139       <command>make -C cpio</command>: Then builds the archive utilities.
     128      <command>sed ...</command>: This eliminates some irritating warnings.
    140129    </para>
    141130
  • introduction/welcome/changelog.xml

    r406e5ffe r20a27fc  
    4343-->
    4444   <listitem>
     45      <para>April 6, 2018</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[bdubbs] - Update to pax-20161104. Fixes
     49          <ulink url="&blfs-ticket-root;10549">#10549</ulink>.</para>
     50        </listitem>
     51      </itemizedlist>
     52    </listitem>
     53
     54   <listitem>
    4555      <para>April 5, 2018</para>
    4656      <itemizedlist>
  • packages.ent

    r406e5ffe r20a27fc  
    279279<!ENTITY obex-data-server-version     "0.4.6">
    280280<!ENTITY p7zip-version                "16.02">
    281 <!ENTITY pax-version                  "070715">
     281<!ENTITY pax-version                  "20161104">
    282282<!ENTITY pciutils-version             "3.5.6">
    283283<!ENTITY pm-utils-version             "1.4.1">
Note: See TracChangeset for help on using the changeset viewer.