From 305326add45814ebf347d4de9a0f7387bee246c7 Mon Sep 17 00:00:00 2001 From: Tim Harder Date: Fri, 23 Sep 2016 21:36:20 -0400 Subject: app-vim/languagetool: initial import --- app-vim/languagetool/Manifest | 1 + .../files/languagetool-1.29-script.patch | 38 ++++++++++++++++++++++ app-vim/languagetool/languagetool-1.29.ebuild | 18 ++++++++++ app-vim/languagetool/metadata.xml | 8 +++++ 4 files changed, 65 insertions(+) create mode 100644 app-vim/languagetool/Manifest create mode 100644 app-vim/languagetool/files/languagetool-1.29-script.patch create mode 100644 app-vim/languagetool/languagetool-1.29.ebuild create mode 100644 app-vim/languagetool/metadata.xml (limited to 'app-vim') diff --git a/app-vim/languagetool/Manifest b/app-vim/languagetool/Manifest new file mode 100644 index 000000000000..51de5d0b16b0 --- /dev/null +++ b/app-vim/languagetool/Manifest @@ -0,0 +1 @@ +DIST languagetool-1.29.tar.bz2 8059 SHA256 92fd4bf94c65828f1c309da5257336a2287c07cae7ab6a4709ae1b79dcbbbcca SHA512 09b5bdc1d3590afe26578f687064a7a62493a11fafca903759dc1e9048cb22a04c6352127b13e4a63acb867d73d943b56fcae7f733350626f05b66a6d1f1626d WHIRLPOOL d5c8d411b465fdad629493e834d154e7e3a25898b20bc009c4ff9977593ab46ca6e0f6f57ae7933da08b9f7283ebc793106a4eb31a17d670050a94f27a2f2af5 diff --git a/app-vim/languagetool/files/languagetool-1.29-script.patch b/app-vim/languagetool/files/languagetool-1.29-script.patch new file mode 100644 index 000000000000..f2737feca8c9 --- /dev/null +++ b/app-vim/languagetool/files/languagetool-1.29-script.patch @@ -0,0 +1,38 @@ +Use launcher script instead of directly running from the jar file. + +--- languagetool-1.29/plugin/LanguageTool.vim ++++ languagetool-1.29/plugin/LanguageTool.vim +@@ -162,23 +162,6 @@ + endif + endif + endif +- +- let s:languagetool_jar = exists("g:languagetool_jar") +- \ ? g:languagetool_jar +- \ : $HOME . '/languagetool/languagetool-commandline.jar' +- +- if !filereadable(s:languagetool_jar) +- " Hmmm, can't find the jar file. Try again with expand() in case user +- " set it up as: let g:languagetool_jar = '$HOME/languagetool-commandline.jar' +- let l:languagetool_jar = expand(s:languagetool_jar) +- if !filereadable(expand(l:languagetool_jar)) +- echomsg "LanguageTool cannot be found at: " . s:languagetool_jar +- echomsg "You need to install LanguageTool and/or set up g:languagetool_jar" +- echomsg "to indicate the location of the languagetool-commandline.jar file." +- return -1 +- endif +- let s:languagetool_jar = l:languagetool_jar +- endif + return 0 + endfunction + +@@ -242,8 +225,7 @@ + let l:range = a:line1 . ',' . a:line2 + silent exe l:range . 'w!' . l:tmpfilename + +- let l:languagetool_cmd = 'java' +- \ . ' -jar ' . s:languagetool_jar ++ let l:languagetool_cmd = 'languagetool' + \ . ' -c ' . s:languagetool_encoding + \ . (empty(s:languagetool_disable_rules) ? '' : ' -d '.s:languagetool_disable_rules) + \ . ' -l ' . s:languagetool_lang diff --git a/app-vim/languagetool/languagetool-1.29.ebuild b/app-vim/languagetool/languagetool-1.29.ebuild new file mode 100644 index 000000000000..3dcbcc79cee8 --- /dev/null +++ b/app-vim/languagetool/languagetool-1.29.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit vim-plugin eutils + +MY_PN=LanguageTool +DESCRIPTION="grammar checker for various languages" +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=3223" +LICENSE="vim" +KEYWORDS="~amd64 ~x86" + +VIM_PLUGIN_HELPFILES="${MY_PN}" + +RDEPEND="app-text/languagetool" + +PATCHES=( "${FILESDIR}"/${P}-script.patch ) diff --git a/app-vim/languagetool/metadata.xml b/app-vim/languagetool/metadata.xml new file mode 100644 index 000000000000..84f8f1cf6bcb --- /dev/null +++ b/app-vim/languagetool/metadata.xml @@ -0,0 +1,8 @@ + + + + + vim@gentoo.org + Gentoo Vim Project + + -- cgit v1.2.3-65-gdbad