wok annotate vim-tiny/receipt @ rev 10224

Up: openttd to 1.1.0.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 21 00:07:05 2011 +0000 (2011-05-21)
parents be13f25e790b
children 749ffdd335d7
rev   line source
erjo@4784 1 # SliTaz package receipt.
erjo@4784 2
erjo@4784 3 PACKAGE="vim-tiny"
manuelfloresv@9417 4 VERSION="7.3"
erjo@4784 5 CATEGORY="development"
erjo@4784 6 SHORT_DESC="Advanced text editor with no GUI"
erjo@4784 7 MAINTAINER="erjo@slitaz.org"
erjo@4784 8 DEPENDS="ncurses"
erjo@4784 9 SOURCE="vim"
erjo@4784 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
erjo@4784 11 WEB_SITE="http://www.vim.org/"
erjo@4784 12 WGET_URL="ftp://ftp.vim.org/pub/vim/unix/$TARBALL"
manuelfloresv@9417 13 CONFIG_FILES="/etc/vim/vimrc"
jozee@4975 14 TAGS="text-editor"
erjo@4784 15
erjo@4784 16 # Rules to configure and make the package.
erjo@4784 17 compile_rules()
erjo@4784 18 {
erjo@4784 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@4784 24
erjo@4784 25 ./configure --prefix=/usr \
erjo@4784 26 --cache-file=$PWD/config.cache \
erjo@4784 27 --infodir=/usr/share/info \
erjo@4784 28 --with-features=tiny \
manuelfloresv@9417 29 --with-x=no \
manuelfloresv@9417 30 --disable-gui \
lufeng369@7853 31 --enable-multibyte \
erjo@4784 32 --with-vim-name=$PACKAGE \
erjo@4784 33 --disable-acl \
erjo@4784 34 --disable-motif-check \
erjo@4784 35 --disable-athena-check \
erjo@4784 36 --mandir=/usr/share/man $CONFIGURE_ARGS &&
erjo@4784 37
manuelfloresv@9417 38 make VIMRCLOC=/etc/vim VIMRUNTIMEDIR=/usr/share/vim/vim73 MAKE="make -e" &&
slaxemulator@8751 39 make DESTDIR=$DESTDIR install
slaxemulator@8751 40 mkdir -p $DESTDIR/etc/vim
slaxemulator@8751 41 cp -a $src/runtime/vimrc_example.vim $DESTDIR/etc/vim/vimrc
erjo@4784 42 }
erjo@4784 43
erjo@4784 44 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4784 45 genpkg_rules()
erjo@4784 46 {
manuelfloresv@9417 47 mkdir -p $fs/usr/share $fs/etc
erjo@4784 48
erjo@4784 49 cp -a $_pkg/usr/bin $fs/usr
erjo@4784 50 cp -a $_pkg/usr/share/vim $fs/usr/share
manuelfloresv@9417 51 cp -a $_pkg/etc/vim $fs/etc
erjo@4784 52 rm -f $fs/usr/bin/*tutor
erjo@4784 53 }
erjo@4784 54
erjo@4784 55 post_install()
erjo@4784 56 {
erjo@4784 57 local root
erjo@4784 58 root=$1
erjo@4784 59 echo "Processing post-install commands..."
erjo@4784 60 cmd=`readlink $root/bin/vi`
erjo@4784 61 if [ ! "$cmd" = "/usr/bin/vim" ]; then
erjo@4784 62 echo ""
erjo@4784 63 echo "**** Actual VI link : $cmd"
erjo@4784 64 echo ""
erjo@4784 65 echo -n "Do you want vim for /bin/vi (y/N) ? : "; read anser
erjo@4784 66 if [ "$anser" == "y" ]; then
erjo@4784 67 echo ""
erjo@4784 68 echo -n "Removing vi link to make a new one pointing on /usr/bin/vim..."
erjo@4784 69 rm $root/bin/vi && ln -sf $root/usr/bin/vim-tiny $root/bin/vi
erjo@4784 70 status
erjo@4784 71 else
erjo@4784 72 echo ""
erjo@4784 73 echo "Leaving /bin/vi to : $cmd"
erjo@4784 74 fi
erjo@4784 75 fi
erjo@4784 76 }
erjo@4784 77
erjo@4784 78 post_remove()
erjo@4784 79 {
erjo@4784 80 # restore previous symlink
erjo@4784 81 echo "Processing post-remove commands..."
slaxemulator@8751 82 ln -sf /bin/busybox $1/bin/vi
erjo@4784 83 }