diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-11-07 20:49:14 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-11-07 20:49:14 +0000 |
commit | bb711eb1b3001417006bbe5cf9fb3ec3aa04292a (patch) | |
tree | dcfe9ef9df82787b3bb6011fb67c803ac7b9a26a /app-vim/slimv/slimv-0.9.2.ebuild | |
parent | Version bump. Merge with live ebuild. (diff) | |
download | gentoo-2-bb711eb1b3001417006bbe5cf9fb3ec3aa04292a.tar.gz gentoo-2-bb711eb1b3001417006bbe5cf9fb3ec3aa04292a.tar.bz2 gentoo-2-bb711eb1b3001417006bbe5cf9fb3ec3aa04292a.zip |
Version bump.
(Portage version: 2.2.0_alpha72/cvs/Linux x86_64)
Diffstat (limited to 'app-vim/slimv/slimv-0.9.2.ebuild')
-rw-r--r-- | app-vim/slimv/slimv-0.9.2.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app-vim/slimv/slimv-0.9.2.ebuild b/app-vim/slimv/slimv-0.9.2.ebuild new file mode 100644 index 000000000000..c3abbc3a36e4 --- /dev/null +++ b/app-vim/slimv/slimv-0.9.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: + +EAPI=4 + +inherit vim-plugin + +DESCRIPTION="vim plugin: aid Lisp development by providing a SLIME-like Lisp and Clojure REPL" +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=2531" +SRC_URI="https://github.com/vim-scripts/${PN}.vim/tarball/${PV} -> ${P}.tar.gz" +LICENSE="public-domain" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="|| ( app-editors/vim[python] app-editors/gvim[python] ) + >=dev-lang/python-2.4 + || ( + dev-lisp/clisp + dev-lang/clojure + dev-lisp/abcl + dev-lisp/clozurecl + dev-lisp/ecls + dev-lisp/sbcl + )" + +VIM_PLUGIN_HELPFILES="slimv.txt" + +src_unpack() { + unpack ${A} + mv *-${PN}.vim-* "${S}" +} + +src_prepare() { + # Remove emacs related files + rm -r slime swank-clojure || die + + rm README || die +} |