blob: f9182ed0d30ee987c3ce7ad0f38dbde2dacc50f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/slimv/slimv-0.7.7.ebuild,v 1.2 2011/03/22 22:24:10 radhermit Exp $
EAPI=3
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="http://www.vim.org/scripts/download_script.php?src_id=15122 -> ${P}.zip"
LICENSE="public-domain"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND=">=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"
S=${WORKDIR}
|