summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2011-01-07 23:06:14 +0000
committerTim Harder <radhermit@gentoo.org>2011-01-07 23:06:14 +0000
commitf2aa03e92d996e3dee1f6a5f3924910aa17e1a1e (patch)
tree19d5a4b04c5cb5940110d0a7095cac1fad7a3645 /app-vim/vimoutliner
parentRemove old (diff)
downloadgentoo-2-f2aa03e92d996e3dee1f6a5f3924910aa17e1a1e.tar.gz
gentoo-2-f2aa03e92d996e3dee1f6a5f3924910aa17e1a1e.tar.bz2
gentoo-2-f2aa03e92d996e3dee1f6a5f3924910aa17e1a1e.zip
Remove old
(Portage version: 2.2.0_alpha12/cvs/Linux x86_64)
Diffstat (limited to 'app-vim/vimoutliner')
-rw-r--r--app-vim/vimoutliner/ChangeLog5
-rw-r--r--app-vim/vimoutliner/vimoutliner-0.3.3a-r1.ebuild42
2 files changed, 4 insertions, 43 deletions
diff --git a/app-vim/vimoutliner/ChangeLog b/app-vim/vimoutliner/ChangeLog
index 9f26a545bdd4..67784b02a980 100644
--- a/app-vim/vimoutliner/ChangeLog
+++ b/app-vim/vimoutliner/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-vim/vimoutliner
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-vim/vimoutliner/ChangeLog,v 1.21 2011/01/07 22:45:02 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-vim/vimoutliner/ChangeLog,v 1.22 2011/01/07 23:06:14 radhermit Exp $
+
+ 07 Jan 2011; Tim Harder <radhermit@gentoo.org> -vimoutliner-0.3.3a-r1.ebuild:
+ Remove old
07 Jan 2011; Brent Baude <ranger@gentoo.org> vimoutliner-0.3.4-r2.ebuild:
stable ppc, bug 345091
diff --git a/app-vim/vimoutliner/vimoutliner-0.3.3a-r1.ebuild b/app-vim/vimoutliner/vimoutliner-0.3.3a-r1.ebuild
deleted file mode 100644
index 7b197c5b9647..000000000000
--- a/app-vim/vimoutliner/vimoutliner-0.3.3a-r1.ebuild
+++ /dev/null
@@ -1,42 +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/vimoutliner/vimoutliner-0.3.3a-r1.ebuild,v 1.10 2010/10/07 04:10:59 leio Exp $
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: easy and fast outlining"
-HOMEPAGE="http://www.vimoutliner.org"
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-LICENSE="GPL-2"
-KEYWORDS="alpha amd64 ia64 ~mips ppc sparc x86"
-IUSE=""
-
-VIM_PLUGIN_HELPFILES="vimoutliner"
-VIM_PLUGIN_MESSAGES="filetype"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i -e '/^if exists/,/endif/d' ftdetect/vo_base.vim
- sed -i -e '/ru .vimoutlinerrc/aru vimoutlinerrc' ftplugin/vo_base.vim
- sed -i -e '/hi spellErr,SpellErrors,BadWord/d' syntax/vo_base.vim
- # weird tarball, bug #83200
- find "${S}" -type f | xargs chmod a+r
-}
-
-src_install() {
- p=/usr/share/vim/vimfiles
- for d in doc ftdetect ftplugin syntax ; do
- dodir ${p}/${d}
- cp -R ${d} "${D}"/${p}/
- done
-
- dodir ${p}/vimoutliner/plugins
- cp -R add-ons/plugins "${D}"/${p}/vimoutliner/
-
- for d in scripts/* add-ons/scripts/* ; do
- dobin ${d}
- done
-
- dodoc vimoutlinerrc
-}