wok annotate vim-tiny/receipt @ rev 5759

Up: PyQt-x11-gpl (4.7.3) Fix: it now confirms license
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Jul 04 15:44:26 2010 -0400 (2010-07-04)
parents 734283599021
children 928de5046af6
rev   line source
erjo@4784 1 # SliTaz package receipt.
erjo@4784 2
erjo@4784 3 PACKAGE="vim-tiny"
erjo@4784 4 VERSION="7.2"
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"
erjo@4784 13 CONFIG_FILES="/etc/vimrc.tiny"
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 src=vim72
erjo@4784 20 #test -d $PACKAGE-$VERSION || mv vim72 $PACKAGE-$VERSION
erjo@4784 21 cd $src
erjo@4784 22
erjo@4784 23 ./configure --prefix=/usr \
erjo@4784 24 --cache-file=$PWD/config.cache \
erjo@4784 25 --infodir=/usr/share/info \
erjo@4784 26 --with-features=tiny \
erjo@4784 27 --enable-gui=no \
erjo@4784 28 --with-vim-name=$PACKAGE \
erjo@4784 29 --disable-acl \
erjo@4784 30 --disable-motif-check \
erjo@4784 31 --disable-athena-check \
erjo@4784 32 --mandir=/usr/share/man $CONFIGURE_ARGS &&
erjo@4784 33
erjo@4784 34 make VIMRCLOC=/etc/vim VIMRUNTIMEDIR=/usr/share/vim/$src MAKE="make -e" &&
erjo@4784 35 make DESTDIR=$PWD/_pkg install
erjo@4784 36 }
erjo@4784 37
erjo@4784 38 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4784 39 genpkg_rules()
erjo@4784 40 {
erjo@4784 41 _pkg="$PWD/vim72/_pkg"
erjo@4784 42
erjo@4784 43 mkdir -p $fs/usr $fs/usr/share $fs/etc/vim
erjo@4784 44
erjo@4784 45 cp -a $_pkg/usr/bin $fs/usr
erjo@4784 46 cp -a $_pkg/usr/share/vim $fs/usr/share
erjo@4784 47 cp -a $WOK/$PACKAGE/vim72/runtime/vimrc_example.vim $fs/etc/vim/vimrc
erjo@4784 48 rm -f $fs/usr/bin/*tutor
erjo@4784 49 }
erjo@4784 50
erjo@4784 51
erjo@4784 52
erjo@4784 53 # Rules to clean extras dirs or files
erjo@4784 54 clean_wok()
erjo@4784 55 {
erjo@4784 56 rm -rf $PWD/vim72 2>/dev/null
erjo@4784 57 }
erjo@4784 58
erjo@4784 59 post_install()
erjo@4784 60 {
erjo@4784 61 local root
erjo@4784 62 root=$1
erjo@4784 63 echo "Processing post-install commands..."
erjo@4784 64 cmd=`readlink $root/bin/vi`
erjo@4784 65 if [ ! "$cmd" = "/usr/bin/vim" ]; then
erjo@4784 66 echo ""
erjo@4784 67 echo "**** Actual VI link : $cmd"
erjo@4784 68 echo ""
erjo@4784 69 echo -n "Do you want vim for /bin/vi (y/N) ? : "; read anser
erjo@4784 70 if [ "$anser" == "y" ]; then
erjo@4784 71 echo ""
erjo@4784 72 echo -n "Removing vi link to make a new one pointing on /usr/bin/vim..."
erjo@4784 73 rm $root/bin/vi && ln -sf $root/usr/bin/vim-tiny $root/bin/vi
erjo@4784 74 status
erjo@4784 75 else
erjo@4784 76 echo ""
erjo@4784 77 echo "Leaving /bin/vi to : $cmd"
erjo@4784 78 fi
erjo@4784 79 fi
erjo@4784 80 }
erjo@4784 81
erjo@4784 82 post_remove()
erjo@4784 83 {
erjo@4784 84 # restore previous symlink
erjo@4784 85 echo "Processing post-remove commands..."
erjo@4784 86 ln -sf /bin/busybox /bin/vi
erjo@4784 87 }