# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-vim/cream/cream-0.36.ebuild,v 1.3 2007/05/16 10:58:12 armin76 Exp $ inherit vim-plugin eutils fdo-mime DESCRIPTION="An easy-to-use configuration of the GVim text editor" HOMEPAGE="http://cream.sourceforge.net" DICT_EN="eng_2.0.2" DICT_FR="fre_2.1" DICT_ES="spa_3.0" DICT_DE="ger_2.0.1" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz linguas_en? ( ${HOMEPAGE}/cream-spell-dict-${DICT_EN}.zip ) linguas_fr? ( ${HOMEPAGE}/cream-spell-dict-${DICT_FR}.zip ) linguas_es? ( ${HOMEPAGE}/cream-spell-dict-${DICT_ES}.zip ) linguas_de? ( ${HOMEPAGE}/cream-spell-dict-${DICT_DE}.zip )" IUSE="linguas_en linguas_fr linguas_es linguas_de" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~sparc ~x86" DEPEND=" >=app-editors/gvim-6.4 app-arch/unzip" RDEPEND=" >=app-editors/gvim-6.4 dev-util/ctags" VIM_PLUGIN_HELPTEXT=\ "Cream is completely 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" # Utility function to rename a Vim help file and its links/anchors: # prefix_help_file prefix file [pattern ...] prefix_help_file() { local prefix="${1}" ; shift local helpfile="${1}" ; shift while [[ -n "${1}" ]] ; do sed -i "s:\([*|]\)\(${1}[*|]\):\1${prefix}-\2:g" "${helpfile}" \ || die "Failed to sed \"${1}\" on \"${helpfile}\"" shift done mv "${helpfile}" "${helpfile%/*}/${prefix}-${helpfile##*/}" \ || die "Failed to rename \"${helpfile}\"" } 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 </dev/null && \ echo '(Will be installed)' ) || echo '(Will not be installed)' )" done elog # give the user time to cancel if necessary epause } pkg_postinst() { fdo-mime_desktop_database_update vim-plugin_pkg_postinst } pkg_postrm() { fdo-mime_desktop_database_update vim-plugin_pkg_postrm }