Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • postlfs/shells/zsh.xml

    r85a581fd r64218c2  
    55  %general-entities;
    66
    7   <!ENTITY zsh-download-http "https://www.zsh.org/pub/zsh-&zsh-version;.tar.xz">
     7  <!ENTITY zsh-download-http "http://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>
    2223    <date>$Date$</date>
    2324  </sect1info>
     
    4041    </para>
    4142
    42     &lfs110a_checked;
     43    &lfs10_checked;
    4344
    4445    <bridgehead renderas="sect3">Package Information</bridgehead>
     
    8182        <para>
    8283          Optional Documentation: <ulink
    83           url="https://www.zsh.org/pub/zsh-&zsh-version;-doc.tar.xz"/>
     84          url="http://www.zsh.org/pub/zsh-&zsh-version;-doc.tar.xz"/>
    8485        </para>
    8586      </listitem>
     
    100101        When there is a new <application>zsh</application> release, the old
    101102        files shown above are moved to a new server directory:
    102         <ulink url="https://www.zsh.org/pub/old/"/>.
     103        <ulink url="http://www.zsh.org/pub/old/"/>.
    103104      </para>
    104105    </note>
     
    142143
    143144<screen><userinput>./configure --prefix=/usr         \
     145            --bindir=/bin         \
    144146            --sysconfdir=/etc/zsh \
    145147            --enable-etcdir=/etc/zsh                  &amp;&amp;
     
    207209
    208210    <para>
     211      <parameter>--bindir=/bin</parameter>: This parameter places the
     212      <command>zsh</command> binaries into the root filesystem.
     213    </para>
     214
     215    <para>
    209216      <option>--enable-cap</option>: This option enables
    210217      POSIX capabilities.
     
    221228      builtins.
    222229    </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;
     249ln -v -sf ../../lib/libpcre.so.0 /usr/lib/libpcre.so
     250
     251mv -v /usr/lib/libgdbm.so.* /lib &amp;&amp;
     252ln -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
    223265  </sect2>
    224266
     
    329371            is a shell which has command-line editing, built-in spelling
    330372            correction, programmable command completion, shell functions (with
    331             autoloading), a history mechanism, and a host of other features
     373            autoloading), a history mechanism, and a host of other features.
    332374          </para>
    333375          <indexterm zone="zsh zsh-prog">
Note: See TracChangeset for help on using the changeset viewer.