]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/blobdiff - vim/vim.nm
sip: update to 4.18.1
[people/amarx/ipfire-3.x.git] / vim / vim.nm
index d826fb60b054d89baa6581f2e8cb1a46344fc173..4e90b48deb2ae0310a5c1ceef90faea654110403 100644 (file)
@@ -5,7 +5,7 @@
 
 name       = vim
 version    = 7.3
-release    = 2
+release    = 5
 
 groups     = Applications/Editors
 url        = http://www.vim.org
@@ -13,46 +13,59 @@ license    = PublicDomain/Charityware
 summary    = Very feature- and powerful editor.
 
 description
-       Vim is a highly configurable text editor built to enable efficient \
-       text editing. It is an improved version of the vi editor \
+       Vim is a highly configurable text editor built to enable efficient
+       text editing. It is an improved version of the vi editor
        distributed with most UNIX systems.
 end
 
 source_dl  = ftp://ftp.vim.org/pub/vim/unix/
 sources    = %{thisapp}.tar.bz2
 
-DIR_APP        = %{DIR_SRC}/%{name}73
 
 build
+       DIR_APP = %{DIR_SRC}/%{name}73
+
        requires
                libacl-devel
                libselinux-devel
                ncurses-devel
+               python-devel
        end
 
        configure_options += \
+               --with-features=huge \
+               --enable-pythoninterp \
+               --enable-gui=no \
                --enable-multibyte \
-               --enable-selinux
+               --enable-cscope \
+               --enable-selinux \
+               --with-tlib=ncurses \
+               --with-modified-by="<bugzilla@ipfire.org>" \
+               --with-compiled-by="<bugzilla@ipfire.org>"
 
        configure_cmds
-               echo '#define SYS_VIMRC_FILE "/etc/vimrc"' >> src/feature.h
+               echo '#define SYS_VIMRC_FILE "%{sysconfdir}/vimrc"' >> src/feature.h
        end
 
        install_cmds
-               ln -sfv vim %{BUILDROOT}/usr/bin/vi
+               ln -sfv vim %{BUILDROOT}%{bindir}/vi
 
                # Install configuration
-               mkdir -pv %{BUILDROOT}/etc
-               cp -vf %{DIR_SOURCE}/vimrc %{BUILDROOT}/etc/vimrc
+               mkdir -pv %{BUILDROOT}%{sysconfdir}
+               cp -vf %{DIR_SOURCE}/vimrc %{BUILDROOT}%{sysconfdir}/vimrc
 
                # Remove script for c-shell
-               rm -rf %{BUILDROOT}/usr/share/vim/vim73/tools/vim132
+               rm -rf %{BUILDROOT}%{datadir}/vim/vim73/tools/vim132
        end
 end
 
 packages
        package %{name}
                groups += Base
+
+               configfiles
+                       %{sysconfdir}/vimrc
+               end
        end
 
        package %{name}-debuginfo