diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-08-06 00:01:39 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-08-06 00:01:39 +0000 |
commit | c72a5c88cdeb089f4f58b52bc1de23c1e7470ba2 (patch) | |
tree | cb5899d8f7049465c7eb7058d075c9b087fa02be /app-vim | |
parent | Stable ppc ppc64, bug #428956 (diff) | |
download | historical-c72a5c88cdeb089f4f58b52bc1de23c1e7470ba2.tar.gz historical-c72a5c88cdeb089f4f58b52bc1de23c1e7470ba2.tar.bz2 historical-c72a5c88cdeb089f4f58b52bc1de23c1e7470ba2.zip |
Version bump.
Package-Manager: portage-2.2.0_alpha120/cvs/Linux x86_64
Diffstat (limited to 'app-vim')
-rw-r--r-- | app-vim/lustyexplorer/ChangeLog | 9 | ||||
-rw-r--r-- | app-vim/lustyexplorer/lustyexplorer-4.3.ebuild | 27 |
2 files changed, 34 insertions, 2 deletions
diff --git a/app-vim/lustyexplorer/ChangeLog b/app-vim/lustyexplorer/ChangeLog index b5eb415a4723..ace9762a61d7 100644 --- a/app-vim/lustyexplorer/ChangeLog +++ b/app-vim/lustyexplorer/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-vim/lustyexplorer -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/lustyexplorer/ChangeLog,v 1.1 2011/05/20 10:01:11 radhermit Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/lustyexplorer/ChangeLog,v 1.2 2012/08/06 00:01:39 radhermit Exp $ + +*lustyexplorer-4.3 (06 Aug 2012) + + 06 Aug 2012; Tim Harder <radhermit@gentoo.org> +lustyexplorer-4.3.ebuild: + Version bump. *lustyexplorer-4.1 (20 May 2011) diff --git a/app-vim/lustyexplorer/lustyexplorer-4.3.ebuild b/app-vim/lustyexplorer/lustyexplorer-4.3.ebuild new file mode 100644 index 000000000000..c0d5de67b765 --- /dev/null +++ b/app-vim/lustyexplorer/lustyexplorer-4.3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/lustyexplorer/lustyexplorer-4.3.ebuild,v 1.1 2012/08/06 00:01:38 radhermit Exp $ + +EAPI=4 + +inherit vim-plugin + +DESCRIPTION="vim plugin: dynamic filesystem and buffer explorer" +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=1890" +LICENSE="as-is" +KEYWORDS="~amd64 ~x86" +IUSE="" + +VIM_PLUGIN_HELPFILES="lusty-explorer.txt" + +RDEPEND="|| ( app-editors/vim[ruby] app-editors/gvim[ruby] )" + +src_prepare() { + # There's good documentation included with the script, but it's not + # in a helpfile. Since there's rather too much information to include + # in a VIM_PLUGIN_HELPTEXT, we'll sed ourselves a help doc. + mkdir "${S}"/doc + sed -e '0,/"$/d' -e '/" GetLatest.\+$/,9999d' -e 's/^" \?//' \ + -e "s/\(Name Of File: \)\([^.]\+\)\.vim/\1*\2.txt*/" \ + plugin/lusty-explorer.vim > doc/lusty-explorer.txt +} |