diff options
Diffstat (limited to 'development/eclim/eclim.SlackBuild')
-rw-r--r-- | development/eclim/eclim.SlackBuild | 46 |
1 files changed, 25 insertions, 21 deletions
diff --git a/development/eclim/eclim.SlackBuild b/development/eclim/eclim.SlackBuild index dbec5cc06d..f4c1035394 100644 --- a/development/eclim/eclim.SlackBuild +++ b/development/eclim/eclim.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for eclim -# Copyright 2016-2017 Andrew Clemons, Wellington New Zealand +# Copyright 2016-2018 Andrew Clemons, Wellington New Zealand # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=eclim -VERSION=${VERSION:-2.7.0} +VERSION=${VERSION:-2.7.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -42,16 +42,12 @@ OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i586" ]; then SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" else SLKCFLAGS="-O2" - LIBDIRSUFFIX="" fi set -e @@ -71,7 +67,7 @@ find -L . \ # http://eclim.org/install.html#install-source ( - # rebuild nailgun + # build nailgun cd org.eclim/nailgun chmod +x configure @@ -92,15 +88,6 @@ chmod +x bin/sphinx # allow building with root - eek sed -i "s/'root'/'dummy'/g" ant/build.gant -# eclim fails to build with ant-1.9.7 on slackbuilds.org -# revert gant jar to fix -# https://github.com/ervandew/eclim/issues/330 -rm -f ant/lib/gant-1.9.11-patched.jar -cp $CWD/gant_groovy2.2-1.9.11.jar ant/lib - -sed -i '/useCache=/d' build.xml -sed -i '/cacheDir=/d' build.xml - ECLIPSE_HOME=${ECLIPSE_HOME:-/opt/eclipse-java} ECLIPSE_HOME=${ECLIPSE_HOME%/} @@ -108,7 +95,7 @@ ECLIPSE_HOME=${ECLIPSE_HOME%/} sed -i \ -e "s|File(getVariable('eclipse')|File('$ECLIPSE_HOME/'|g" \ -e 's|${user.home}/\.|${vim.files}/|g' \ - -e '68,88d' \ + -e '69,88d' \ ant/build.gant ant build -Declipse.home=$ECLIPSE_HOME -Dvim.files=/usr/share/vim/vimfiles @@ -120,13 +107,30 @@ ant docs vimdocs -Declipse.home=$ECLIPSE_HOME -Dvim.files=$PKG/usr/share/vim/vim ant deploy -Declipse.home=$PKG$ECLIPSE_HOME -Dvim.files=$PKG/usr/share/vim/vimfiles # tidy up -sed -i "s#$PKG##" $PKG$ECLIPSE_HOME/plugins/org.eclim_$VERSION/bin/eclimd \ - $PKG$ECLIPSE_HOME/plugins/org.eclim_$VERSION/plugin.properties \ - $PKG/usr/share/vim/vimfiles/eclim/plugin/eclim.vim -sed -i "s#\${eclipse.home}#$ECLIPSE_HOME#" $PKG$ECLIPSE_HOME/plugins/org.eclim_$VERSION/bin/native/linux/eclimd $PKG$ECLIPSE_HOME/plugins/org.eclim_$VERSION/bin/native/linux/eclimd.desktop +sed -i "s|$PKG||" \ + $PKG$ECLIPSE_HOME/plugins/org.eclim_$VERSION/bin/eclimd \ + $PKG$ECLIPSE_HOME/plugins/org.eclim_$VERSION/plugin.properties \ + $PKG/usr/share/vim/vimfiles/eclim/plugin/eclim.vim + +# generate tags for help files +echo "ignored" | vim \ + -c "set rtp^=$PKG/usr/share/vim/vimfiles" \ + -c "source $PKG/usr/share/vim/vimfiles/plugin/eclim.vim" \ + -c 'EclimHelp' \ + -c 'q!' - + find $PKG$ECLIPSE_HOME/plugins/org.eclim_$VERSION/nailgun \! -name ng -mindepth 1 -print0 | xargs -0 rm -rf rm -rf build/doc/site/.doctrees +# neovim support +mkdir -p $PKG/usr/share/nvim/runtime/plugin +( + cd $PKG/usr/share/nvim/runtime + + ln -s ../../vim/vimfiles/eclim eclim + ln -s ../../../vim/vimfiles/plugin/eclim.vim plugin/eclim.vim +) + mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ build/doc/site \ |