blob: 45d854e8b32b16a71ad98a4f886a0365df8a7d23 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/vimoutliner/vimoutliner-0.3.3.ebuild,v 1.4 2005/02/22 23:13:09 agriffis Exp $
inherit vim-plugin
DESCRIPTION="vim plugin: easy and fast outlining"
HOMEPAGE="http://www.vimoutliner.org"
SRC_URI="mirror://gentoo/${PN}-${PV}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="x86 sparc mips ~amd64 alpha ia64"
IUSE=""
VIM_PLUGIN_HELPFILES="vimoutliner"
VIM_PLUGIN_MESSAGES="filetype"
src_unpack() {
unpack ${A}
cd ${S}
sed -i -e '/^if exists/,/endif/d' ftdetect/vo_base.vim
sed -i -e '/ru .vimoutlinerrc/aru vimoutlinerrc' ftplugin/vo_base.vim
sed -i -e '/hi spellErr,SpellErrors,BadWord/d' syntax/vo_base.vim
}
src_install() {
cd ${S}
p=/usr/share/vim/vimfiles
for d in doc ftdetect ftplugin syntax ; do
dodir ${p}/${d}
cp -R ${d} ${D}/${p}/
done
dodir ${p}/vimoutliner/plugins
cp -R add-ons/plugins ${D}/${p}/vimoutliner/
for d in scripts/* add-ons/scripts/* ; do
dobin ${d}
done
dodoc vimoutlinerrc
}
|