diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2009-12-17 11:01:56 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2009-12-17 11:01:56 +0000 |
commit | 65911a836bcad0e93f964b1c676379d707edd976 (patch) | |
tree | 6054f555ef2c8847266562153d084af054c23a46 /app-vim | |
parent | stable x86 (diff) | |
download | gentoo-2-65911a836bcad0e93f964b1c676379d707edd976.tar.gz gentoo-2-65911a836bcad0e93f964b1c676379d707edd976.tar.bz2 gentoo-2-65911a836bcad0e93f964b1c676379d707edd976.zip |
clean up
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'app-vim')
-rw-r--r-- | app-vim/vimcommander/ChangeLog | 6 | ||||
-rw-r--r-- | app-vim/vimcommander/vimcommander-1.54.2.2.ebuild | 33 |
2 files changed, 5 insertions, 34 deletions
diff --git a/app-vim/vimcommander/ChangeLog b/app-vim/vimcommander/ChangeLog index e3d3c163f5e8..d2da4f58a411 100644 --- a/app-vim/vimcommander/ChangeLog +++ b/app-vim/vimcommander/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-vim/vimcommander # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/vimcommander/ChangeLog,v 1.23 2009/12/17 11:00:45 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/vimcommander/ChangeLog,v 1.24 2009/12/17 11:01:56 fauli Exp $ + + 17 Dec 2009; Christian Faulhammer <fauli@gentoo.org> + -vimcommander-1.54.2.2.ebuild: + clean up 17 Dec 2009; Christian Faulhammer <fauli@gentoo.org> vimcommander-1.54.2.9.ebuild: diff --git a/app-vim/vimcommander/vimcommander-1.54.2.2.ebuild b/app-vim/vimcommander/vimcommander-1.54.2.2.ebuild deleted file mode 100644 index 0fb061295b84..000000000000 --- a/app-vim/vimcommander/vimcommander-1.54.2.2.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/vimcommander/vimcommander-1.54.2.2.ebuild,v 1.12 2005/09/30 16:00:26 metalgod Exp $ - -inherit vim-plugin - -DESCRIPTION="vim plugin: Total Commander style file explorer" -HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=808" -LICENSE="GPL-2" -KEYWORDS="alpha ~amd64 ia64 ppc sparc x86" -IUSE="" - -VIM_PLUGIN_HELPFILES="vimcommander" - -function src_unpack() { - unpack ${A} - mkdir ${S}/doc || die "can't make doc dir" - - # This plugin uses an 'automatic documentation install' trick. This - # causes problems for us during the unmerge. Fortunately, sed can fix - # this for us. - sed -e '1,/^=== START_DOC$/d' \ - -e '/^=== END_DOC/,$d' \ - -e "s/#version#/v${PV}/" \ - ${S}/plugin/vimcommander.vim > ${S}/doc/vimcommander.txt \ - || die "help extraction failed" - - echo -ne "\n\n vim:tw=78:ts=8:ft=help:norl:" >> ${S}/doc/vimcommander.txt - - sed -i -e 's/" \(let b:vimcommander_install_doc=\)[01]/\10/' \ - ${S}/plugin/vimcommander.vim \ - || die "help extract disable failed" -} |