Updated to vim-7.0

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@6387 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Bruce Dubbs 2007-01-14 03:45:10 +00:00
parent 158a9f3d7a
commit e26dfbf71f
3 changed files with 26 additions and 9 deletions

View File

@ -71,7 +71,7 @@
<!ENTITY xfsprogs-version "2.7.11">
<!-- Chapter 6 -->
<!ENTITY vim-version "6.4">
<!ENTITY vim-version "7.0">
<!ENTITY emacs-version "21.4a">
<!ENTITY nano-version "2.0.1">
<!ENTITY joe-version "3.5">

View File

@ -44,6 +44,9 @@
<listitem>
<para>January 13th, 2007</para>
<itemizedlist>
<listitem>
<para>[bdubbs] - Updated to vim-7.0.</para>
</listitem>
<listitem>
<para>[bdubbs] - Updated to bind-9.3.3.</para>
</listitem>

View File

@ -18,10 +18,10 @@
<!ENTITY vim-download-http "http://ftp.at.vim.org/pub/vim/unix/vim-&vim-version;.tar.bz2">
<!ENTITY vim-download-ftp "ftp://ftp.vim.org/pub/vim/unix/vim-&vim-version;.tar.bz2">
<!ENTITY vim-md5sum "774c14d93ce58674b3b2c880edd12d77">
<!ENTITY vim-size "3.6 MB">
<!ENTITY vim-buildsize "41 MB">
<!ENTITY vim-time "0.6 SBU">
<!ENTITY vim-md5sum "4ca69757678272f718b1041c810d82d8">
<!ENTITY vim-size "6.3 MB">
<!ENTITY vim-buildsize "73 MB">
<!ENTITY vim-time "0.8 SBU">
]>
<sect1 id="vim" xreflabel="Vim-&vim-version;">
@ -77,6 +77,14 @@
<bridgehead renderas="sect3">Additional Downloads</bridgehead>
<itemizedlist spacing='compact'>
<listitem>
<para>Recommended Patch: <ulink
url="&patch-root;/vim-&vim-version;-fixes-14.patch"/></para>
</listitem>
<listitem>
<para>Recommended Patch: <ulink
url="&patch-root;/vim-&vim-version;-mandir-1.patch"/></para>
</listitem>
<listitem>
<para>Translated Vim messages: <ulink
url="http://ftp.at.vim.org/pub/vim/extra/vim-&vim-version;-lang.tar.gz"/>
@ -124,7 +132,9 @@
<para>Install <application>Vim</application> by running the following
commands:</para>
<screen><userinput>echo '#define SYS_VIMRC_FILE "/etc/vimrc"' &gt;&gt; src/feature.h &amp;&amp;
<screen><userinput>patch -Np1 -i ../vim-&vim-version;-fixes-14.patch &amp;&amp;
patch -Np1 -i ../vim-&vim-version;-mandir-1.patch &amp;&amp;
echo '#define SYS_VIMRC_FILE "/etc/vimrc"' &gt;&gt; src/feature.h &amp;&amp;
echo '#define SYS_GVIMRC_FILE "/etc/gvimrc"' &gt;&gt; src/feature.h &amp;&amp;
./configure --prefix=/usr --with-features=huge &amp;&amp;
make</userinput></screen>
@ -148,6 +158,10 @@ rm -f /usr/share/vim/vim64/tutor/tutor.??.*</userinput></screen>
<sect2 role="commands">
<title>Command Explanations</title>
<para><command>patch &hellip;</command>: These patches are the same as LFS
and update the package with upstream patches and ensure the man pages
are placed in the proper locations.</para>
<para><parameter>--with-features=huge</parameter>: This switch enables all
the additional features available in <application>Vim</application>.</para>
@ -156,9 +170,9 @@ rm -f /usr/share/vim/vim64/tutor/tutor.??.*</userinput></screen>
<application>X</application> so that some nice eye-candy such as updating the
title bar of an <application>Xterm</application> window are available.</para>
<para><option>--without-x</option>: If you prefer not to link
<application>Vim</application> against <application>X</application>, use
this switch.</para>
<para><option>--without-x</option>, <option>--enable-gui=no</option>: If
you prefer not to link <application>Vim</application> against
<application>X</application>, use these switches.</para>
</sect2>