diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-07-18 22:56:22 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-07-18 22:56:22 +0000 |
commit | d257dd57cbdd2e537caa5a7273ab9362eb75cd78 (patch) | |
tree | 067851945868686e7a683ba1fe46a53863358e92 /app-vim/cream | |
parent | Removing unused versions. Dropping the ~sparc-fbsd keyword with permission of... (diff) | |
download | gentoo-2-d257dd57cbdd2e537caa5a7273ab9362eb75cd78.tar.gz gentoo-2-d257dd57cbdd2e537caa5a7273ab9362eb75cd78.tar.bz2 gentoo-2-d257dd57cbdd2e537caa5a7273ab9362eb75cd78.zip |
Remove old.
(Portage version: 2.2.0_alpha45/cvs/Linux x86_64)
Diffstat (limited to 'app-vim/cream')
-rw-r--r-- | app-vim/cream/ChangeLog | 6 | ||||
-rw-r--r-- | app-vim/cream/cream-0.32.ebuild | 116 | ||||
-rw-r--r-- | app-vim/cream/cream-0.34.ebuild | 154 |
3 files changed, 5 insertions, 271 deletions
diff --git a/app-vim/cream/ChangeLog b/app-vim/cream/ChangeLog index 48b641ebf4f9..4d20183c335d 100644 --- a/app-vim/cream/ChangeLog +++ b/app-vim/cream/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-vim/cream # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/cream/ChangeLog,v 1.50 2011/07/18 06:33:55 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/cream/ChangeLog,v 1.51 2011/07/18 22:56:22 radhermit Exp $ + + 18 Jul 2011; Tim Harder <radhermit@gentoo.org> -cream-0.32.ebuild, + -cream-0.34.ebuild: + Remove old. 18 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> cream-0.41-r2.ebuild: ppc stable wrt #306949 diff --git a/app-vim/cream/cream-0.32.ebuild b/app-vim/cream/cream-0.32.ebuild deleted file mode 100644 index 1f8ea48f2d7e..000000000000 --- a/app-vim/cream/cream-0.32.ebuild +++ /dev/null @@ -1,116 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/cream/cream-0.32.ebuild,v 1.14 2010/10/07 03:05:31 leio Exp $ - -inherit vim-plugin eutils - -DESCRIPTION="Cream is 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-arch/unzip" -RDEPEND=">=app-editors/gvim-6.2 - 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" - -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 --noplugin -U NONE -u "\\\$VIM/cream/creamrc" "\$@" -EOF - sed -i "/let \$CREAM/s:VIMRUNTIME:VIM:" creamrc || die "sed #1 broke" - - # make taglist ebuild aware, bug #66052 - epatch "${FILESDIR}"/${PN}-0.30-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 filetypes ; 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() { - elog "Cream comes with several dictionaries for spell checking. In" - elog "all cases, at least a small English dictionary will be installed." - elog - elog "To specify which optional dictionaries are installed, set the" - elog "LINGUAS variable in /etc/make.conf. For example, to install full" - elog "English and French dictionaries, use:" - elog " LINGUAS=\"en fr\"" - elog - elog "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... - elog " ${dict% *} \t(${dict#* }) $( ( \ - use linguas_${dict#* } &>/dev/null && \ - echo '(Will be installed)' ) || echo '(Will not be installed)' )" - done - elog - # give the user time to cancel if necessary - epause -} diff --git a/app-vim/cream/cream-0.34.ebuild b/app-vim/cream/cream-0.34.ebuild deleted file mode 100644 index 6d8ca15a5a72..000000000000 --- a/app-vim/cream/cream-0.34.ebuild +++ /dev/null @@ -1,154 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/cream/cream-0.34.ebuild,v 1.11 2008/09/20 14:12:28 hawking 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 <<EOF -#!/bin/sh -gvim --noplugin -U NONE -u "\\\$VIM/cream/creamrc" "\$@" -EOF - sed -i "/let \$CREAM/s:VIMRUNTIME:VIM:" creamrc || die "sed #1 broke" - - # make taglist ebuild aware, bug #66052 - epatch "${FILESDIR}"/${PN}-0.30-ebuilds.patch - - # more filetypes for EnhancedCommentify, including the Gentoo ones - epatch "${FILESDIR}"/enhancedcommentify-2.1-gentooisms.patch - epatch "${FILESDIR}"/enhancedcommentify-2.1-extra-ft-support.patch - - # rename vim help files to avoid conflicts with other vim packages - prefix_help_file cream help/EnhancedCommentify.txt \ - 'EnhancedCommentify' 'EnhComm-[a-zA-Z]\+' - prefix_help_file cream help/opsplorer.txt \ - 'opsplorer\.txt' 'opsplorer_[a-z_]\+' -} - -src_install() { - # install launcher and menu entry - dobin cream - domenu cream.desktop - doicon cream.svg cream.png - - # install shared vim files - insinto /usr/share/vim/cream - doins *.vim creamrc - local dir - for dir in addons bitmaps filetypes lang spelldicts ; do - insinto /usr/share/vim/cream/${dir} - doins ${dir}/* - done - insinto /usr/share/vim/vimfiles/doc - doins help/*.txt - - # install docs - dodoc docs/{CHANGELOG,DEVELOPER,KEYBOARD,PressRelease,README,RELEASE}.txt - dohtml docs-html/* - # html doc may be opened from Cream GUI - dosym ../../doc/${PF}/html /usr/share/vim/cream/docs-html -} - -pkg_setup() { - elog "Cream comes with several dictionaries for spell checking. In" - elog "all cases, at least a small English dictionary will be installed." - elog - elog "To specify which optional dictionaries are installed, set the" - elog "LINGUAS variable in /etc/make.conf. For example, to install full" - elog "English and French dictionaries, use:" - elog " LINGUAS=\"en fr\"" - elog - elog "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... - elog " ${dict% *} \t(${dict#* }) $( ( \ - use linguas_${dict#* } &>/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 -} |