On Fri, Nov 27, 2009 at 9:24 AM, Chris Staub <ch...@beaker67.com> wrote:
> On 11/27/2009 09:19 AM, Chris Staub wrote:
>>
>> Sorry, can't help you without more specifics. Name some of the programs,
>> specifically, that you cannot find.
>>
>> I also note you mention make but not configure...
>
> Also, specify exactly how you installed one of these packages you can't
> find...configure options, make commands, everything... (and don't just
> say you did "what's in the book")
> --
> http://linuxfromscratch.org/mailman/listinfo/lfs-support
> FAQ: http://www.linuxfromscratch.org/lfs/faq.html
> Unsubscribe: See the above information page
>

1st half of one of my scripts

#!/bin/bash
tar -xvf vim-7.2.tar.bz2
cd vim72
patch -Np1 -i ../vim-7.2-fixes-5.patch
echo '#define SYS_VIMRC_FILE "/etc/vimrc"' >> src/feature.h
./configure --prefix=/usr --enable-multibyte
make
make test

2nd half of the script for the vim app

#!/bin/bash
cd vim72
make install
ln -sv vim /usr/bin/vi
for L in  /usr/share/man/{,*/}man1/vim.1; do
    ln -sv vim.1 $(dirname $L)/vi.1
done
ln -sv ../vim/vim72/doc /usr/share/doc/vim-7.2
cat > /etc/vimrc << "EOF"
" Begin /etc/vimrc

set nocompatible
set backspace=2
syntax on
if (&term == "iterm") || (&term == "putty")
  set background=dark
endif

" End /etc/vimrc
EOF
cd ..
rm -rf vim72

I copied these commands straight off the pages of the book and put
them in shell scripts and ran the scripts.
-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page

Reply via email to