wok annotate vim/receipt @ rev 15700
wbar2:Fixconfig (again)
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sun Dec 22 15:10:14 2013 +0100 (2013-12-22) |
parents | 749ffdd335d7 |
children | d9d7fcbb1ab3 |
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" |
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@13276 | 16 |
erjo@250 | 17 # Rules to configure and make the package. |
erjo@250 | 18 compile_rules() |
erjo@250 | 19 { |
erjo@250 | 20 cd $src |
manuelfloresv@9417 | 21 |
manuelfloresv@9417 | 22 # define the place for the global vimrc file (set to /etc/vim/vimrc) |
manuelfloresv@9417 | 23 # (patch from Arch Linux PKGBUILD) |
manuelfloresv@9417 | 24 sed -i 's|^.*\(#define SYS_VIMRC_FILE\).*$|\1 "/etc/vim/vimrc"|' $src/src/feature.h |
erjo@250 | 25 |
erjo@250 | 26 ./configure --prefix=/usr \ |
erjo@250 | 27 --cache-file=$PWD/config.cache \ |
erjo@250 | 28 --infodir=/usr/share/info \ |
erjo@250 | 29 --with-features=normal \ |
manuelfloresv@9417 | 30 --with-x=no \ |
gokhlayeh@9131 | 31 --disable-gui \ |
rocky@7851 | 32 --enable-multibyte \ |
erjo@2927 | 33 --disable-motif-check \ |
erjo@2927 | 34 --disable-athena-check \ |
pascal@2948 | 35 --mandir=/usr/share/man $CONFIGURE_ARGS && |
erjo@250 | 36 |
manuelfloresv@9417 | 37 make VIMRCLOC=/etc/vim VIMRUNTIMEDIR=/usr/share/vim/vim73 MAKE="make -e" && |
slaxemulator@8751 | 38 make DESTDIR=$DESTDIR install |
slaxemulator@8751 | 39 mkdir -p $DESTDIR/etc/vim |
slaxemulator@8751 | 40 cp -a $src/runtime/vimrc_example.vim $DESTDIR/etc/vim/vimrc |
erjo@250 | 41 } |
erjo@250 | 42 |
erjo@250 | 43 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@250 | 44 genpkg_rules() |
erjo@250 | 45 { |
manuelfloresv@9417 | 46 mkdir -p $fs/usr/share $fs/etc |
erjo@2927 | 47 |
pascal@15363 | 48 cp -a $install/usr/bin $fs/usr |
pascal@15363 | 49 cp -a $install/usr/share/vim $fs/usr/share |
pascal@15363 | 50 cp -a $install/etc/vim $fs/etc |
erjo@2927 | 51 } |
erjo@250 | 52 |
erjo@250 | 53 post_install() |
erjo@250 | 54 { |
erjo@250 | 55 local root |
erjo@250 | 56 root=$1 |
erjo@250 | 57 echo "Processing post-install commands..." |
erjo@250 | 58 cmd=`readlink $root/bin/vi` |
erjo@250 | 59 if [ ! "$cmd" = "/usr/bin/vim" ]; then |
erjo@250 | 60 echo "" |
erjo@250 | 61 echo "**** Actual VI link : $cmd" |
erjo@250 | 62 echo "" |
pascal@14582 | 63 echo -n "Do you want vim for /bin/vi (y/N) ? : "; read -t 30 anser |
erjo@250 | 64 if [ "$anser" == "y" ]; then |
erjo@250 | 65 echo "" |
erjo@250 | 66 echo -n "Removing vi link to make a new one pointing on /usr/bin/vim..." |
erjo@1354 | 67 rm $root/bin/vi && ln -sf $root/usr/bin/vim $root/bin/vi |
erjo@250 | 68 status |
erjo@250 | 69 else |
erjo@250 | 70 echo "" |
erjo@250 | 71 echo "Leaving /bin/vi to : $cmd" |
erjo@250 | 72 fi |
erjo@250 | 73 fi |
erjo@250 | 74 } |
erjo@250 | 75 |
erjo@2531 | 76 post_remove() |
erjo@2531 | 77 { |
erjo@2531 | 78 # restore previous symlink |
erjo@2531 | 79 echo "Processing post-remove commands..." |
slaxemulator@8751 | 80 ln -sf /bin/busybox $1/bin/vi |
erjo@2531 | 81 } |