Changeset e1c116d for postlfs


Ignore:
Timestamp:
03/25/2007 02:00:40 PM (17 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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:
546a1b6
Parents:
9ce2ad56
Message:

Updated to Stunnel-4.20

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • postlfs/security/stunnel.xml

    r9ce2ad56 re1c116d  
    77  <!ENTITY stunnel-download-http "http://www.stunnel.org/download/stunnel/src/stunnel-&stunnel-version;.tar.gz">
    88  <!ENTITY stunnel-download-ftp  "ftp://stunnel.mirt.net/stunnel/stunnel-&stunnel-version;.tar.gz">
    9   <!ENTITY stunnel-md5sum        "2c00153ad099a5f9c5609e8d1dbbe470">
    10   <!ENTITY stunnel-size          "497 KB">
    11   <!ENTITY stunnel-buildsize     "4.2 MB">
     9  <!ENTITY stunnel-md5sum        "cf9940395d3503018f721c962528d2ec">
     10  <!ENTITY stunnel-size          "513 KB">
     11  <!ENTITY stunnel-buildsize     "4.5 MB">
    1212  <!ENTITY stunnel-time          "0.1 SBU">
    1313]>
     
    110110    commands:</para>
    111111
    112 <screen><userinput>sed -i -e 's|nogroup|stunnel|' \
    113        -e 's|$(prefix)/var/lib|$(localstatedir)|' \
    114     tools/Makefile.in
     112<screen><userinput>sed -i 's|nogroup|stunnel|g' configure &amp;&amp;
     113sed -i 's|$(prefix)/var/lib|$(localstatedir)|' tools/Makefile.in &amp;&amp;
    115114sed -i 's|doc/stunnel|&amp;-$(VERSION)|' {,doc/,tools/}Makefile.in &amp;&amp;
    116115
    117 ./configure --prefix=/usr --sysconfdir=/etc \
    118     --localstatedir=/var/lib --disable-libwrap &amp;&amp;
     116./configure --prefix=/usr \
     117            --sysconfdir=/etc \
     118            --localstatedir=/var/lib \
     119            --disable-libwrap &amp;&amp;
    119120make</userinput></screen>
    120121
     
    130131    <title>Command Explanations</title>
    131132
    132     <para><command>sed -i -e '...' -e '...' tools/Makefile.in</command>:
    133     This <command>sed</command> command modifies the group and directory
    134     used for the <command>chroot</command> jail to conform with the parameters
    135     created earlier.</para>
     133    <para><command>sed -i 's|nogroup|stunnel|g' configure</command>: This
     134    command is used to change the default group for the installed files in
     135    <filename class='directory'>/var/lib/stunnel</filename> from
     136    <systemitem class="groupname">nogroup</systemitem> to
     137    <systemitem class="groupname">stunnel</systemitem>.</para>
     138
     139    <para><command>sed -i '...' tools/Makefile.in</command>: This command
     140    ensures that the chroot jail will be located in
     141    <filename class='directory'>/var/lib/stunnel</filename> instead of
     142    <filename class='directory'>/usr/var/lib/stunnel</filename>.</para>
    136143
    137144    <para><command>sed -i '...' {,doc/,tools/}Makefile.in</command>: This
    138     <command>sed</command> command modifies the location of the installed
    139     docs to a versioned directory.</para>
     145    command modifies the location of the installed documentation files to a
     146    versioned directory.</para>
    140147
    141148    <para><parameter>--sysconfdir=/etc</parameter>: This parameter forces
Note: See TracChangeset for help on using the changeset viewer.