summaryrefslogtreecommitdiff
blob: c61c446407cc61bd79863362e6506c54bb73016d (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.3 2004/03/16 00:34:36 dholm 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"
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/*
}