blob: d320747fd244e199edd2bb26bea4a996e9d984e4 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# 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.1 2004/02/07 18:35:29 ciaranm 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"
IUSE=""
DEPEND=""
RDEPEND=">=app-editors/gvim-6.2"
S=${WORKDIR}/${P}
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/*
}
|