wok annotate vim/receipt @ rev 15080

libmatchbox: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 13 17:56:32 2013 +0000 (2013-08-13)
parents fbb0f6a5043a
children 2a21689b0af7
rev   line source
erjo@250 1 # SliTaz package receipt.
erjo@250 2
erjo@250 3 PACKAGE="vim"
manuelfloresv@9417 4 VERSION="7.3"
pankso@271 5 CATEGORY="development"
erjo@250 6 SHORT_DESC="Advanced text editor"
erjo@784 7 MAINTAINER="erjo@slitaz.org"
erjo@250 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@250 9 WEB_SITE="http://www.vim.org/"
erjo@250 10 WGET_URL="ftp://ftp.vim.org/pub/vim/unix/$TARBALL"
mallory@6286 11 CONFIG_FILES="/etc/vim/vimrc"
jozee@4975 12 TAGS="text-editor"
erjo@250 13
pascal@13276 14 DEPENDS="ncurses acl diffutils"
pascal@13276 15
erjo@250 16 # Rules to configure and make the package.
erjo@250 17 compile_rules()
erjo@250 18 {
erjo@250 19 cd $src
manuelfloresv@9417 20
manuelfloresv@9417 21 # define the place for the global vimrc file (set to /etc/vim/vimrc)
manuelfloresv@9417 22 # (patch from Arch Linux PKGBUILD)
manuelfloresv@9417 23 sed -i 's|^.*\(#define SYS_VIMRC_FILE\).*$|\1 "/etc/vim/vimrc"|' $src/src/feature.h
erjo@250 24
erjo@250 25 ./configure --prefix=/usr \
erjo@250 26 --cache-file=$PWD/config.cache \
erjo@250 27 --infodir=/usr/share/info \
erjo@250 28 --with-features=normal \
manuelfloresv@9417 29 --with-x=no \
gokhlayeh@9131 30 --disable-gui \
rocky@7851 31 --enable-multibyte \
erjo@2927 32 --disable-motif-check \
erjo@2927 33 --disable-athena-check \
pascal@2948 34 --mandir=/usr/share/man $CONFIGURE_ARGS &&
erjo@250 35
manuelfloresv@9417 36 make VIMRCLOC=/etc/vim VIMRUNTIMEDIR=/usr/share/vim/vim73 MAKE="make -e" &&
slaxemulator@8751 37 make DESTDIR=$DESTDIR install
slaxemulator@8751 38 mkdir -p $DESTDIR/etc/vim
slaxemulator@8751 39 cp -a $src/runtime/vimrc_example.vim $DESTDIR/etc/vim/vimrc
erjo@250 40 }
erjo@250 41
erjo@250 42 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@250 43 genpkg_rules()
erjo@250 44 {
manuelfloresv@9417 45 mkdir -p $fs/usr/share $fs/etc
erjo@2927 46
erjo@250 47 cp -a $_pkg/usr/bin $fs/usr
erjo@250 48 cp -a $_pkg/usr/share/vim $fs/usr/share
manuelfloresv@9417 49 cp -a $_pkg/etc/vim $fs/etc
erjo@2927 50 }
erjo@250 51
erjo@250 52 post_install()
erjo@250 53 {
erjo@250 54 local root
erjo@250 55 root=$1
erjo@250 56 echo "Processing post-install commands..."
erjo@250 57 cmd=`readlink $root/bin/vi`
erjo@250 58 if [ ! "$cmd" = "/usr/bin/vim" ]; then
erjo@250 59 echo ""
erjo@250 60 echo "**** Actual VI link : $cmd"
erjo@250 61 echo ""
pascal@14582 62 echo -n "Do you want vim for /bin/vi (y/N) ? : "; read -t 30 anser
erjo@250 63 if [ "$anser" == "y" ]; then
erjo@250 64 echo ""
erjo@250 65 echo -n "Removing vi link to make a new one pointing on /usr/bin/vim..."
erjo@1354 66 rm $root/bin/vi && ln -sf $root/usr/bin/vim $root/bin/vi
erjo@250 67 status
erjo@250 68 else
erjo@250 69 echo ""
erjo@250 70 echo "Leaving /bin/vi to : $cmd"
erjo@250 71 fi
erjo@250 72 fi
erjo@250 73 }
erjo@250 74
erjo@2531 75 post_remove()
erjo@2531 76 {
erjo@2531 77 # restore previous symlink
erjo@2531 78 echo "Processing post-remove commands..."
slaxemulator@8751 79 ln -sf /bin/busybox $1/bin/vi
erjo@2531 80 }