mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-24 23:32:12 +08:00
Update to zsh-5.0.2.
Tag files for LFS-7.3 git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@11393 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
parent
8607f108ea
commit
ca179554ce
@ -193,7 +193,7 @@ export -f as_root</userinput></screen>
|
||||
<!-- Chapter 7 -->
|
||||
<!ENTITY dash-version "0.5.7">
|
||||
<!ENTITY tcsh-version "6.18.01">
|
||||
<!ENTITY zsh-version "5.0.0">
|
||||
<!ENTITY zsh-version "5.0.2">
|
||||
|
||||
<!-- Chapter 8 Virtualization -->
|
||||
<!ENTITY qemu-version "1.5.1">
|
||||
|
@ -46,6 +46,9 @@
|
||||
<listitem>
|
||||
<para>July 12th, 2013</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Update to zsh-5.0.2.</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Update to emacs-24.3.</para>
|
||||
</listitem>
|
||||
|
@ -37,7 +37,7 @@
|
||||
failure. <application>Dash</application> is also useful for checking that
|
||||
a script is completely compatible with POSIX syntax.</para>
|
||||
|
||||
&lfs72_checked;
|
||||
&lfs73_checked;
|
||||
|
||||
<bridgehead renderas="sect3">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
|
@ -36,7 +36,7 @@
|
||||
and also because some programs require the C shell in order to perform
|
||||
installation tasks.</para>
|
||||
|
||||
&lfs72_checked;
|
||||
&lfs73_checked;
|
||||
|
||||
<bridgehead renderas="sect3">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
|
@ -6,12 +6,12 @@
|
||||
|
||||
<!ENTITY zsh-download-http "&sourceforge-repo;/zsh/zsh-&zsh-version;.tar.bz2">
|
||||
<!ENTITY zsh-download-ftp " ">
|
||||
<!ENTITY zsh-md5sum "e8484468925cec8d9a84b8b04797e764">
|
||||
<!ENTITY zsh-md5sum "b8f2ad691acf58b3252225746480dcad">
|
||||
<!ENTITY zsh-size "2.9 MB">
|
||||
<!ENTITY zsh-buildsize "61 MB (includes installing all documentation)">
|
||||
<!ENTITY zsh-time "0.7 SBU">
|
||||
<!ENTITY zsh-buildsize "65 MB (includes installing documentation)">
|
||||
<!ENTITY zsh-time "1.1 SBU">
|
||||
|
||||
<!ENTITY zsh-doc-md5sum "b3a026cf02471b66454a2b241a4d92a4">
|
||||
<!ENTITY zsh-doc-md5sum "b6818cbbea635b2f70883bb913d0a04a">
|
||||
]>
|
||||
|
||||
<sect1 id="zsh" xreflabel="zsh-&zsh-version;">
|
||||
@ -37,7 +37,7 @@
|
||||
<application>zsh</application> most closely resembles
|
||||
<application>ksh</application> but includes many enhancements.</para>
|
||||
|
||||
&lfs72_checked;
|
||||
&lfs73_checked;
|
||||
|
||||
<bridgehead renderas="sect3">Package Information</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
@ -63,20 +63,25 @@
|
||||
|
||||
<bridgehead renderas="sect3">Additional Downloads</bridgehead>
|
||||
<itemizedlist spacing="compact">
|
||||
<listitem>
|
||||
<para>Required patch: <ulink
|
||||
url="&patch-root;/zsh-&zsh-version;-makeinfo-1.patch"/></para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>Optional Documentation: <ulink
|
||||
url="&sourceforge-repo;/zsh/zsh-&zsh-version;-doc.tar.bz2"/></para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>MD5 sum: &zsh-doc-md5sum;</para>
|
||||
<para>Documentation MD5 sum: &zsh-doc-md5sum;</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<bridgehead renderas="sect3">zsh Dependencies</bridgehead>
|
||||
|
||||
<bridgehead renderas="sect4">Optional</bridgehead>
|
||||
<para role="optional"><xref linkend="pcre"/> and
|
||||
<xref linkend="libcap2"/>
|
||||
<para role="optional">
|
||||
<xref linkend="pcre"/> and
|
||||
<xref linkend="libcap2"/>
|
||||
</para>
|
||||
|
||||
<para condition="html" role="usernotes">User Notes:
|
||||
@ -95,15 +100,17 @@
|
||||
<para>Install <application>zsh</application> by running the following
|
||||
commands:</para>
|
||||
|
||||
<screen><userinput>./configure --prefix=/usr \
|
||||
--bindir=/bin \
|
||||
--sysconfdir=/etc/zsh \
|
||||
--enable-etcdir=/etc/zsh &&
|
||||
make &&
|
||||
<screen><userinput>patch -Np1 -i ../zsh-&zsh-version;-makeinfo-1.patch &&
|
||||
|
||||
makeinfo Doc/zsh.texi --html -o Doc/html &&
|
||||
makeinfo Doc/zsh.texi --html --no-split --no-headers \
|
||||
-o Doc/zsh.html &&
|
||||
./configure --prefix=/usr \
|
||||
--bindir=/bin \
|
||||
--sysconfdir=/etc/zsh \
|
||||
--enable-etcdir=/etc/zsh &&
|
||||
make &&
|
||||
|
||||
makeinfo Doc/zsh.texi --html -o Doc/html &&
|
||||
makeinfo Doc/zsh.texi --html --no-split --no-headers \
|
||||
-o Doc/zsh.html &&
|
||||
makeinfo Doc/zsh.texi --plaintext -o Doc/zsh.txt</userinput></screen>
|
||||
|
||||
<para>If you have <xref linkend="texlive"/>
|
||||
|
Loading…
Reference in New Issue
Block a user