2006-02-23 15:26:10 +00:00
|
|
|
# Description: GTK version of the vim editor
|
|
|
|
# URL: http://www.vim.org/
|
2008-07-11 09:29:19 +02:00
|
|
|
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
|
2006-02-23 15:26:10 +00:00
|
|
|
# Depends on: vim, gtk
|
|
|
|
|
|
|
|
name=gvim
|
2010-03-20 08:33:06 +01:00
|
|
|
version=7.2.400
|
2007-05-13 10:49:23 +02:00
|
|
|
release=1
|
2009-06-18 10:02:03 +02:00
|
|
|
source=(ftp://ftp.vim.org/pub/vim/unix/vim-7.2.tar.bz2
|
2009-09-14 11:37:28 +02:00
|
|
|
ftp://ftp.vim.org/pub/vim/extra/vim-7.2-extra.tar.gz
|
|
|
|
ftp://ftp.vim.org/pub/vim/extra/vim-7.2-lang.tar.gz
|
|
|
|
ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.001-100.gz
|
|
|
|
ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.101-200.gz
|
2009-11-19 11:55:50 +01:00
|
|
|
ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.201-300.gz
|
2010-03-20 08:33:06 +01:00
|
|
|
ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.301-400.gz
|
2009-06-18 10:02:03 +02:00
|
|
|
gvim.desktop)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build () {
|
2008-08-13 11:42:37 +02:00
|
|
|
cd vim72/src
|
2007-09-29 09:54:43 +02:00
|
|
|
|
2009-09-14 11:37:28 +02:00
|
|
|
gunzip -c $SRC/7.2.*.gz | patch -p0 -d $SRC/vim72
|
2008-11-28 11:57:43 +01:00
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--with-vim-name=gvim \
|
|
|
|
--with-x=yes \
|
|
|
|
--enable-gui=gtk2 \
|
2006-07-16 18:49:43 +00:00
|
|
|
--enable-multibyte \
|
2006-02-23 15:26:10 +00:00
|
|
|
--disable-gpm \
|
|
|
|
--disable-nls
|
2007-04-19 18:34:23 +02:00
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
make VIMRTDIR=
|
|
|
|
make VIMRTDIR= DESTDIR=$PKG installvimbin
|
2009-06-18 10:02:03 +02:00
|
|
|
|
|
|
|
install -d $PKG/usr/share/{applications,pixmaps}
|
|
|
|
install -m 644 $SRC/gvim.desktop $PKG/usr/share/applications
|
|
|
|
install -m 644 ../runtime/vim*.png $PKG/usr/share/pixmaps
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|