diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2017-03-24 20:36:10 +0000 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2017-03-25 00:07:32 +0000 |
commit | ed50d8f1c6a1cb17b581d31705b36fd2dce8a004 (patch) | |
tree | 4c906987e0ea9dcfb730936270b153810cea6f8d /development/eclim/eclim.SlackBuild | |
parent | 143e052c02a5b8f6011ce7aa9945d5c436da89ea (diff) | |
download | slackbuilds-ed50d8f1c6a1cb17b581d31705b36fd2dce8a004.tar.gz |
development/eclim: Fixed jdt plugin not getting built.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'development/eclim/eclim.SlackBuild')
-rw-r--r-- | development/eclim/eclim.SlackBuild | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/development/eclim/eclim.SlackBuild b/development/eclim/eclim.SlackBuild index ae479f22d4..28844290d7 100644 --- a/development/eclim/eclim.SlackBuild +++ b/development/eclim/eclim.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=eclim VERSION=${VERSION:-2.6.0} -BUILD=${BUILD:-4} +BUILD=${BUILD:-5} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -104,18 +104,25 @@ sed -i '/cacheDir=/d' build.xml ECLIPSE_HOME=${ECLIPSE_HOME:-/opt/eclipse-java} ECLIPSE_HOME=${ECLIPSE_HOME%/} +# thanks to the archlinux maintainer (thanks to mikezackles) +sed -i \ + -e "s|File(getVariable('eclipse')|File('$ECLIPSE_HOME/'|g" \ + -e 's|${user.home}/\.|${vim.files}/|g' \ + -e '68,88d' \ + ant/build.gant + ant build -Declipse.home=$ECLIPSE_HOME -Dvim.files=/usr/share/vim/vimfiles mkdir -p $PKG/usr/share/vim/vimfiles - -ant docs vimdocs -Declipse.home=$ECLIPSE_HOME -Dvim.files=$PKG/usr/share/vim/vimfiles - mkdir -p $PKG$ECLIPSE_HOME -ant deploy.eclipse -Declipse.home=$PKG$ECLIPSE_HOME -Dvim.files=$PKG/usr/share/vim/vimfiles +ant docs vimdocs -Declipse.home=$ECLIPSE_HOME -Dvim.files=$PKG/usr/share/vim/vimfiles +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 +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 find $PKG$ECLIPSE_HOME/plugins/org.eclim_$VERSION/nailgun \! -name ng -mindepth 1 -print0 | xargs -0 rm -rf rm -rf build/doc/site/.doctrees |