blob: 3f00e698178ed71350cbc116fb070c66cd80e06f (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit vim-plugin
# Note: This is r56 in the subversion repository.
DESCRIPTION="Vim-Improved eMACS: an Emacs emulation for Vim"
HOMEPAGE="http://www.algorithm.com.au/code/vimacs/index.html
http://sigil.com.au/svn/trunk/Vimacs/
http://www.vim.org/scripts/script.php?script_id=300"
SRC_URI="http://www.algorithm.com.au/downloads/vimacs/${P}.tar.gz"
# LICENSE="as-is"
KEYWORDS="~x86"
IUSE=""
VIM_PLUGIN_HELPFILES="vimacs tab-indent"
src_install() {
dosym vim /usr/bin/vimacs || die
dosym vim /usr/bin/vemacs || die
dosym gvim /usr/bin/gvimacs || die
dosym gvim /usr/bin/gvemacs || die
vim-plugin_src_install
}
|