diff options
Diffstat (limited to 'source/ap/vim/vim.SlackBuild')
-rwxr-xr-x | source/ap/vim/vim.SlackBuild | 31 |
1 files changed, 28 insertions, 3 deletions
diff --git a/source/ap/vim/vim.SlackBuild b/source/ap/vim/vim.SlackBuild index 460b07a1..15904bcd 100755 --- a/source/ap/vim/vim.SlackBuild +++ b/source/ap/vim/vim.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2008, 2009 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2008, 2009, 2010 Patrick J. Volkerding, Sebeka, Minnesota, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,10 +24,20 @@ VIMVER=7.2 CTAGSVER=5.7 # This is the directory in the VIM source archive to cd into. DIRVER=72 -ARCH=${ARCH:-x86_64} -NUMJOBS=${NUMJOBS:-" -j7 "} BUILD=${BUILD:-1} +# Automatically determine the architecture we're building on: +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) export ARCH=i486 ;; + arm*) export ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) export ARCH=$( uname -m ) ;; + esac +fi + +NUMJOBS=${NUMJOBS:-" -j7 "} + PYVER=$(python -V 2>&1 | cut -f 2 -d' ' | cut -f 1-2 -d.) if [ "$ARCH" = "x86_64" ]; then @@ -109,6 +119,21 @@ CFLAGS="$SLKCFLAGS" \ } cd $TMP/vim$DIRVER + +# If there's no syntax update, create one: +if ! ls $CWD/vim-runtime-syntax-* 1> /dev/null 2> /dev/null ; then + rm -rf runtime/syntax.orig + cp -a runtime/syntax runtime/syntax.orig + echo "Fetching vim syntax updates from ftp.nluug.nl..." + rsync -avzcP ftp.nluug.nl::Vim/runtime/syntax/ runtime/syntax/ + diff -u -r --new-file runtime/syntax.orig runtime/syntax | gzip -9c > $CWD/vim-runtime-syntax-$(date +%Y%m%d).diff.gz + rm -rf runtime/syntax + mv runtime/syntax.orig runtime/syntax +fi + +# Apply the syntax update: +zcat $CWD/vim-runtime-syntax-*.diff.gz | patch -p0 --verbose || exit 1 + chown -R root:root . find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ |