blob: 09757c46fb40401aa4c9af789e28a4c911bf9972 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-vim/cream/cream-0.28.ebuild,v 1.5 2004/07/14 13:18:33 agriffis Exp $
inherit vim-plugin
DESCRIPTION="Cream is an easy-to-use configuration of the GVim text editor"
HOMEPAGE="http://cream.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 sparc ~mips ~ppc"
IUSE=""
DEPEND=""
RDEPEND=">=app-editors/gvim-6.2"
src_install() {
newbin ${FILESDIR}/cream.sh cream
insinto /usr/share/vim/cream
doins *.vim .vimrc .gvimrc
local dir
for dir in addons bitmaps spelldicts views ; do
cp -R ${dir} ${D}/usr/share/vim/cream
done
dodir /usr/share/vim/vimfiles
cp -R help ${D}/usr/share/vim/vimfiles/doc
dodoc docs/*
dohtml docs-html/*
}
|