diff options
author | 2013-01-24 23:02:38 +0000 | |
---|---|---|
committer | 2013-01-24 23:02:38 +0000 | |
commit | b6fed0f77b62e2e61ced2757702d5830753cbb65 (patch) | |
tree | 48cf40be4b25fe610be4ef32265850c35b849713 /app-vim/colorschemes | |
parent | Add patch to deal with >=ibus-1.4.99. #453506 (diff) | |
download | gentoo-2-b6fed0f77b62e2e61ced2757702d5830753cbb65.tar.gz gentoo-2-b6fed0f77b62e2e61ced2757702d5830753cbb65.tar.bz2 gentoo-2-b6fed0f77b62e2e61ced2757702d5830753cbb65.zip |
Version bump, update LICENSE.
(Portage version: 2.2.0_alpha159/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'app-vim/colorschemes')
-rw-r--r-- | app-vim/colorschemes/ChangeLog | 9 | ||||
-rw-r--r-- | app-vim/colorschemes/colorschemes-20130124.ebuild | 28 |
2 files changed, 35 insertions, 2 deletions
diff --git a/app-vim/colorschemes/ChangeLog b/app-vim/colorschemes/ChangeLog index e6292868ab15..6ab747ff3032 100644 --- a/app-vim/colorschemes/ChangeLog +++ b/app-vim/colorschemes/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-vim/colorschemes -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/colorschemes/ChangeLog,v 1.69 2012/03/04 21:34:30 radhermit Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/colorschemes/ChangeLog,v 1.70 2013/01/24 23:02:38 radhermit Exp $ + +*colorschemes-20130124 (24 Jan 2013) + + 24 Jan 2013; Tim Harder <radhermit@gentoo.org> +colorschemes-20130124.ebuild: + Version bump, update LICENSE. 04 Mar 2012; Tim Harder <radhermit@gentoo.org> -colorschemes-20110506-r1.ebuild: diff --git a/app-vim/colorschemes/colorschemes-20130124.ebuild b/app-vim/colorschemes/colorschemes-20130124.ebuild new file mode 100644 index 000000000000..4faa7d35446a --- /dev/null +++ b/app-vim/colorschemes/colorschemes-20130124.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/colorschemes/colorschemes-20130124.ebuild,v 1.1 2013/01/24 23:02:38 radhermit Exp $ + +EAPI=5 + +inherit vim-plugin eutils + +DESCRIPTION="vim plugin: a collection of color schemes from vim.org" +HOMEPAGE="http://www.vim.org/" + +LICENSE="vim GPL-2 GPL-2+ GPL-3 GPL-3+ MIT BSD WTFPL-2 public-domain" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos" +IUSE="" + +VIM_PLUGIN_HELPTEXT=\ +"This plugin provides a collection of color schemes for vim. To switch +color schemes, use :colorscheme schemename (tab completion is available +for scheme names). To automatically set a scheme at startup, please see +:help vimrc." + +src_prepare() { + EPATCH_SOURCE="${S}/patches" \ + EPATCH_SUFFIX="patch" \ + EPATCH_FORCE="yes" \ + epatch + rm -rf patches/ +} |