diff options
Diffstat (limited to 'app-vim/cream/cream-0.30-r3.ebuild')
-rw-r--r-- | app-vim/cream/cream-0.30-r3.ebuild | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/app-vim/cream/cream-0.30-r3.ebuild b/app-vim/cream/cream-0.30-r3.ebuild new file mode 100644 index 000000000000..63a40fcfe15f --- /dev/null +++ b/app-vim/cream/cream-0.30-r3.ebuild @@ -0,0 +1,114 @@ +# 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.30-r3.ebuild,v 1.1 2004/10/02 00:13:54 ciaranm Exp $ + +inherit vim-plugin eutils + +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 + linguas_en? ( ${HOMEPAGE}/cream-spell-dict-eng-l.zip ) + linguas_fr? ( ${HOMEPAGE}/cream-spell-dict-fre-l.zip ) + linguas_es? ( ${HOMEPAGE}/cream-spell-dict-spa-l.zip ) + linguas_de? ( ${HOMEPAGE}/cream-spell-dict-ger-l.zip )" + +IUSE="" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 sparc ~ppc mips ~amd64" + +DEPEND="" +RDEPEND=">=app-editors/gvim-6.2 + dev-util/ctags" + +VIM_PLUGIN_HELPTEXT=\ +"Cream is completly independent from the rest of your Vim/GVim setup. +To launch GVim in Cream mode, use this wrapper script: +\ % cream [filename...] + +Cream's documentation has been installed in ${ROOT}usr/share/doc/${PF} +In particular, you may want to read: + +\ - the Cream features list: +file://${ROOT}usr/share/doc/${PF}/html/features.html + +\ - the Cream shortcuts list: +file://${ROOT}usr/share/doc/${PF}/html/keyboardshortcuts.html + +\ - the Cream FAQ: +file://${ROOT}usr/share/doc/${PF}/html/faq.html" + +src_unpack() { + mkdir -p ${S}/spelldicts + + # install spell dictionaries into ${S}/spelldicts + local my_a + for my_a in ${A} ; do + if [ -z ${my_a/*spell-dict*/} ] ; then + cd ${S}/spelldicts + unpack ${my_a} + else + cd ${WORKDIR} + unpack ${my_a} + fi + done + + # change installation path + fix the wrapper command (disable plugins) + cd ${S} + cat >cream <<EOF +#!/bin/sh +gvim -u NONE -U "\\\$VIM/cream/creamrc" "\$@" +EOF + sed -i "/let \$CREAM/s:VIMRUNTIME:VIM:" creamrc || die "sed #1 broke" + + # fix up evil autocmd behaviour, bug #61158 + epatch ${FILESDIR}/${P}-autocmd.patch + + # make taglist ebuild aware, bug #66052 + epatch ${FILESDIR}/${P}-ebuilds.patch +} + +src_install() { + # install launcher and menu entry + dobin cream + insinto /usr/share/applications + doins cream.desktop + insinto /usr/share/icons + doins cream.svg cream.png + + # install shared vim files + insinto /usr/share/vim/cream + doins *.vim creamrc + local dir + for dir in addons bitmaps spelldicts ; do + cp -R ${dir} ${D}/usr/share/vim/cream + done + dodir /usr/share/vim/vimfiles + cp -R help ${D}/usr/share/vim/vimfiles/doc + + # install docs + dodoc docs/* + dohtml docs-html/* +} + +pkg_setup() { + einfo "Cream comes with several dictionaries for spell checking. In" + einfo "all cases, at least a small English dictionary will be installed." + einfo " " + einfo "To specify which optional dictionaries are installed, set the" + einfo "LINGUAS variable in /etc/make.conf. For example, to install full" + einfo "English and French dictionaries, use:" + einfo " LINGUAS=\"en fr\"" + einfo " " + einfo "Available dictionaries are:" + for dict in "English en" "French fr" "German de" "Spanish es" ; do + # portage bug: shouldn't get a QA notice for linguas stuff... + einfo " ${dict% *} \t(${dict#* }) $( ( \ + use linguas_${dict#* } &>/dev/null && \ + echo '(Will be installed)' ) || echo '(Will not be installed)' )" + done + einfo " " + # give the user time to cancel if necessary + epause +} + |