--- eclim_1.7.3/ant/build.gant 2012-03-01 10:41:46.000000000 -0500 +++ ../build.gant 2012-03-22 23:05:58.840883320 -0400 @@ -145,7 +145,7 @@ target(name: 'build.vim'){ target(name: 'deploy'){ depends('deploy.eclipse', 'deploy.vim') - mkdir(dir: '${user.home}/.eclim/resources/ext') + mkdir(dir: '${vim.files}/eclim/resources/ext') } target(name: 'deploy.eclipse'){ @@ -427,7 +427,7 @@ target(name: 'vimdocs'){ mkdir(dir: 'build/doc/vimdocs') // generate site documention via sphinx - exec(executable: 'sphinx-build', failonerror: true, dir: '.'){ + exec(executable: 'sphinx-build2', failonerror: true, dir: '.'){ arg(line: '${sphinx.args} -b vimdoc doc/content build/doc/vimdocs') } @@ -657,8 +657,8 @@ def initPlugins(){ defaults.each{ name -> pluginInclude(name)} // find all the available eclipse features - featurePaths = [new File(getVariable('eclipse') + '/features')] - dropins = new File(getVariable('eclipse') + '/dropins') + featurePaths = [new File('/usr/share/eclipse/features')] + dropins = new File('/usr/share/eclipse/dropins') if (dropins.exists()){ dropins.eachDir{ dropin -> featurePaths << new File(dropin.getAbsolutePath() + '/eclipse/features')