blob: b65cb9310e917f988997d21f213b28f93e01c018 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# $Id: PKGBUILD 17437 2008-10-29 18:56:25Z tobias $
# Maintainer: tobias [ tobias at archlinux org ]
pkgname=vi
_srcver=7.2
_patchlevel=148
pkgver=${_srcver}.${_patchlevel}
pkgrel=3
pkgdesc="a highly configurable, improved version of the vi text editor (basic version)"
arch=(i686 x86_64)
license=('custom:vim')
url="http://www.vim.org"
groups=('base')
depends=('glibc' 'ncurses' 'coreutils')
makedepends=('wget' 'sed' 'grep' 'gettext')
backup=(etc/virc)
install=${pkgname}.install
# we need the extra-stuff to get all patches applied smoothly
source=(ftp://ftp.vim.org/pub/vim/unix/vim-${_srcver}.tar.bz2 \
ftp://ftp.vim.org/pub/vim/extra/vim-${_srcver}-extra.tar.gz \
ftp://ftp.vim.org/pub/vim/extra/vim-${_srcver}-lang.tar.gz \
fetch_patches.sh fetch_runtime.sh)
build()
{
# pull in patches from vim.org (or the src cache alternatively)
. ${startdir}/src/fetch_patches.sh
. ${startdir}/src/fetch_runtime.sh
get_patches || return 1
cd ${startdir}/src/vim$(echo ${_srcver} | sed "s/\.//")
# set the virc different from vimrc
sed -i 's|^.*\(#define SYS_VIMRC_FILE.*"\) .*$|\1|' src/feature.h
sed -i 's|^.*\(#define VIMRC_FILE.*"\) .*$|\1|' src/feature.h
sed -i 's|^.*\(#define USR_VIMRC_FILE\t"\).*$|\1$HOME/.virc"|' src/feature.h
sed -i 's|/etc/vimrc|/etc/virc|' src/feature.h
sed -i 's|\.vimrc|.virc|' src/feature.h
# build party
./configure --prefix=/usr --localstatedir=/var/lib/vim --mandir=/usr/share/man \
--with-compiledby=ArchLinux --with-features=normal \
--with-global-runtime=/usr/share/vim --with-vim-name=vi \
--disable-gpm --disable-acl --with-x=no --disable-gui --enable-multibyte
make || return 1
make VIMRCLOC=/etc DESTDIR=${startdir}/pkg VIMRTDIR= install
cd ${startdir}/pkg/usr/bin
rm -f vim rvim view rview vidiff
ln -s vi evi
# delete the manpages for vidiff, we don't bother with that symlink since vidiff doesn't work
find ${startdir}/pkg/usr/share/man -type d -name 'man1' 2> /dev/null | \
while read mandir; do
cd ${mandir}
rm -f vidiff.1
done
_runtimedir="${startdir}/pkg/usr/share/vim/"
update_runtime
install -Dm644 ${startdir}/pkg/usr/share/vim/vimrc_example.vim \
${startdir}/pkg/etc/virc
rm -f ${startdir}/pkg/usr/share/vim/gvimrc_example.vim
install -dm755 ${startdir}/pkg/usr/share/licenses/vim
cd ${startdir}/pkg/usr/share/licenses/vim
ln -s ../../vim/doc/uganda.txt license.txt
# Changes to remove mouse support VERY IMPORTANT!
########################################################################################
sed -i "s/mouse=a/mouse-=a/g" $startdir/pkg/etc/virc
############################################################################
}
|