Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • postlfs/shells/zsh.xml

    r64218c2 r85a581fd  
    55  %general-entities;
    66
    7   <!ENTITY zsh-download-http "http://www.zsh.org/pub/zsh-&zsh-version;.tar.xz">
     7  <!ENTITY zsh-download-http "https://www.zsh.org/pub/zsh-&zsh-version;.tar.xz">
    88  <!ENTITY zsh-download-ftp  " ">
    99  <!ENTITY zsh-md5sum        "e02a5428620b3dd268800c7843b3dd4d">
     
    2020
    2121  <sect1info>
    22     <othername>$LastChangedBy$</othername>
    2322    <date>$Date$</date>
    2423  </sect1info>
     
    4140    </para>
    4241
    43     &lfs10_checked;
     42    &lfs110a_checked;
    4443
    4544    <bridgehead renderas="sect3">Package Information</bridgehead>
     
    8281        <para>
    8382          Optional Documentation: <ulink
    84           url="http://www.zsh.org/pub/zsh-&zsh-version;-doc.tar.xz"/>
     83          url="https://www.zsh.org/pub/zsh-&zsh-version;-doc.tar.xz"/>
    8584        </para>
    8685      </listitem>
     
    101100        When there is a new <application>zsh</application> release, the old
    102101        files shown above are moved to a new server directory:
    103         <ulink url="http://www.zsh.org/pub/old/"/>.
     102        <ulink url="https://www.zsh.org/pub/old/"/>.
    104103      </para>
    105104    </note>
     
    143142
    144143<screen><userinput>./configure --prefix=/usr         \
    145             --bindir=/bin         \
    146144            --sysconfdir=/etc/zsh \
    147145            --enable-etcdir=/etc/zsh                  &amp;&amp;
     
    209207
    210208    <para>
    211       <parameter>--bindir=/bin</parameter>: This parameter places the
    212       <command>zsh</command> binaries into the root filesystem.
    213     </para>
    214 
    215     <para>
    216209      <option>--enable-cap</option>: This option enables
    217210      POSIX capabilities.
     
    228221      builtins.
    229222    </para>
    230 
    231     <sect3 id="mountpoints">
    232       <title>Multiple partitions</title>
    233 
    234       <para>
    235         Linking <application>zsh</application> dynamically against
    236         <application>pcre</application> and/or <application>gdbm</application>
    237         produces runtime dependencies on <filename class='libraryfile'>
    238         libpcre.so</filename> and/or <filename class='libraryfile'>libgdbm.so
    239         </filename>respectively, which both reside in
    240         <filename class='directory'>/usr</filename> hierarchy. If
    241         <filename class='directory'>/usr</filename> is a separate mount point
    242         and <application>zsh</application> needs to be available in boot time,
    243         then its supporting libraries should be in
    244         <filename class='directory'>/lib</filename> too. You can move the
    245         libraries as follows:
    246       </para>
    247 
    248 <screen role="root"><userinput>mv -v /usr/lib/libpcre.so.* /lib &amp;&amp;
    249 ln -v -sf ../../lib/libpcre.so.0 /usr/lib/libpcre.so
    250 
    251 mv -v /usr/lib/libgdbm.so.* /lib &amp;&amp;
    252 ln -v -sf ../../lib/libgdbm.so.3 /usr/lib/libgdbm.so</userinput>
    253 </screen>
    254 
    255       <para>
    256         Alternatively you can statically link <application>zsh</application>
    257         against <application>pcre</application> and
    258         <application>gdbm</application> if you modify the
    259         <filename>config.modules</filename> file (you need first to run
    260         configure to generate it).
    261       </para>
    262 
    263     </sect3>
    264 
    265223  </sect2>
    266224
     
    371329            is a shell which has command-line editing, built-in spelling
    372330            correction, programmable command completion, shell functions (with
    373             autoloading), a history mechanism, and a host of other features.
     331            autoloading), a history mechanism, and a host of other features
    374332          </para>
    375333          <indexterm zone="zsh zsh-prog">
Note: See TracChangeset for help on using the changeset viewer.