summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Pawlik <nelchael@gentoo.org>2009-01-18 20:49:12 +0000
committerKrzysztof Pawlik <nelchael@gentoo.org>2009-01-18 20:49:12 +0000
commit1a45a78b16659e52dc4d52611f447cd9e4e1217b (patch)
tree8cfea2cde79b4d78f8270ba43eba82f7683fae57 /app-vim
parentVersion bump (diff)
downloadgentoo-2-1a45a78b16659e52dc4d52611f447cd9e4e1217b.tar.gz
gentoo-2-1a45a78b16659e52dc4d52611f447cd9e4e1217b.tar.bz2
gentoo-2-1a45a78b16659e52dc4d52611f447cd9e4e1217b.zip
New snapshot of available color schemes.
(Portage version: 2.1.6.6/cvs/Linux 2.6.28-tuxonice x86_64)
Diffstat (limited to 'app-vim')
-rw-r--r--app-vim/colorschemes/ChangeLog9
-rw-r--r--app-vim/colorschemes/colorschemes-20090118.ebuild35
2 files changed, 42 insertions, 2 deletions
diff --git a/app-vim/colorschemes/ChangeLog b/app-vim/colorschemes/ChangeLog
index 2efa3eb94b98..611e0d693121 100644
--- a/app-vim/colorschemes/ChangeLog
+++ b/app-vim/colorschemes/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-vim/colorschemes
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-vim/colorschemes/ChangeLog,v 1.33 2008/03/09 15:13:58 nelchael Exp $
+# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-vim/colorschemes/ChangeLog,v 1.34 2009/01/18 20:49:12 nelchael Exp $
+
+*colorschemes-20090118 (18 Jan 2009)
+
+ 18 Jan 2009; <nelchael@gentoo.org> +colorschemes-20090118.ebuild:
+ New snapshot of available color schemes.
09 Mar 2008; Krzysiek Pawlik <nelchael@gentoo.org>
-colorschemes-20050321.ebuild, -colorschemes-20051207.ebuild:
diff --git a/app-vim/colorschemes/colorschemes-20090118.ebuild b/app-vim/colorschemes/colorschemes-20090118.ebuild
new file mode 100644
index 000000000000..277d76286641
--- /dev/null
+++ b/app-vim/colorschemes/colorschemes-20090118.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-vim/colorschemes/colorschemes-20090118.ebuild,v 1.1 2009/01/18 20:49:12 nelchael Exp $
+
+inherit vim-plugin eutils
+
+DESCRIPTION="vim plugin: a collection of color schemes from vim.org"
+HOMEPAGE="http://www.vim.org/"
+SRC_URI="mirror://gentoo/${P}.tar.bz2"
+
+LICENSE="vim GPL-2 public-domain as-is"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86"
+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_unpack() {
+
+ unpack ${A}
+
+ cd "${S}"
+
+ EPATCH_SOURCE="${S}/patches"
+ EPATCH_SUFFIX="patch"
+ EPATCH_FORCE="yes"
+ epatch
+
+ einfo "Fixing line endings"
+ find . -name '*.vim' -exec sed -i -e 's,\r,\n,g' {} \;
+
+}