wok annotate vim/receipt @ rev 18730

Quote root dir in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 20 15:13:45 2015 +0100 (2015-12-20)
parents 3494cfd4c595
children 6fab3264ba87
rev   line source
erjo@250 1 # SliTaz package receipt.
erjo@250 2
erjo@250 3 PACKAGE="vim"
manuelfloresv@9417 4 VERSION="7.3"
pascal@18559 5 CATEGORY="editors"
erjo@250 6 SHORT_DESC="Advanced text editor"
erjo@784 7 MAINTAINER="erjo@slitaz.org"
pascal@15363 8 LICENSE="other"
erjo@250 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@250 10 WEB_SITE="http://www.vim.org/"
erjo@250 11 WGET_URL="ftp://ftp.vim.org/pub/vim/unix/$TARBALL"
mallory@6286 12 CONFIG_FILES="/etc/vim/vimrc"
jozee@4975 13 TAGS="text-editor"
erjo@250 14
pascal@13276 15 DEPENDS="ncurses acl diffutils"
pascal@17716 16 BUILD_DEPENDS="ncurses-dev acl-dev diffutils"
pascal@13276 17
erjo@250 18 # Rules to configure and make the package.
erjo@250 19 compile_rules()
erjo@250 20 {
pascal@17716 21 export LDFLAGS="$LDFLAGS -ltinfo"
manuelfloresv@9417 22
manuelfloresv@9417 23 # define the place for the global vimrc file (set to /etc/vim/vimrc)
manuelfloresv@9417 24 # (patch from Arch Linux PKGBUILD)
manuelfloresv@9417 25 sed -i 's|^.*\(#define SYS_VIMRC_FILE\).*$|\1 "/etc/vim/vimrc"|' $src/src/feature.h
erjo@250 26
erjo@250 27 ./configure --prefix=/usr \
erjo@250 28 --cache-file=$PWD/config.cache \
erjo@250 29 --infodir=/usr/share/info \
erjo@250 30 --with-features=normal \
manuelfloresv@9417 31 --with-x=no \
gokhlayeh@9131 32 --disable-gui \
rocky@7851 33 --enable-multibyte \
erjo@2927 34 --disable-motif-check \
erjo@2927 35 --disable-athena-check \
pascal@2948 36 --mandir=/usr/share/man $CONFIGURE_ARGS &&
erjo@250 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@250 42 }
erjo@250 43
erjo@250 44 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@250 45 genpkg_rules()
erjo@250 46 {
manuelfloresv@9417 47 mkdir -p $fs/usr/share $fs/etc
erjo@2927 48
pascal@15363 49 cp -a $install/usr/bin $fs/usr
pascal@15363 50 cp -a $install/usr/share/vim $fs/usr/share
pascal@15363 51 cp -a $install/etc/vim $fs/etc
erjo@2927 52 }
erjo@250 53
erjo@250 54 post_install()
erjo@250 55 {
erjo@250 56 echo "Processing post-install commands..."
pascal@18730 57 cmd=$(readlink "$1/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..."
pascal@18730 66 rm "$1/bin/vi" && ln -sf /usr/bin/vim "$1/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..."
pascal@18730 79 ln -sf /bin/busybox "$1/bin/vi"
erjo@2531 80 }