summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2011-02-07 14:18:36 +0000
committerTim Harder <radhermit@gentoo.org>2011-02-07 14:18:36 +0000
commit02e55ee5cb33fd4b6335116fdc818138cc06f3e1 (patch)
tree6808f42bda851b9fcbb5f678c7861c0c84ee4c64 /app-vim
parentRemove deprecated information about plugdev group. Replaced by authorization ... (diff)
downloadgentoo-2-02e55ee5cb33fd4b6335116fdc818138cc06f3e1.tar.gz
gentoo-2-02e55ee5cb33fd4b6335116fdc818138cc06f3e1.tar.bz2
gentoo-2-02e55ee5cb33fd4b6335116fdc818138cc06f3e1.zip
Version bump. Don't set tabstop and shiftwidth (bug #339300 by Kent Fredric).
(Portage version: 2.2.0_alpha20/cvs/Linux x86_64)
Diffstat (limited to 'app-vim')
-rw-r--r--app-vim/perl-support/ChangeLog7
-rw-r--r--app-vim/perl-support/perl-support-4.9.ebuild26
2 files changed, 32 insertions, 1 deletions
diff --git a/app-vim/perl-support/ChangeLog b/app-vim/perl-support/ChangeLog
index 6ae8086e8991..0a09bf568f7b 100644
--- a/app-vim/perl-support/ChangeLog
+++ b/app-vim/perl-support/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-vim/perl-support
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-vim/perl-support/ChangeLog,v 1.29 2011/01/07 22:26:53 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-vim/perl-support/ChangeLog,v 1.30 2011/02/07 14:18:36 radhermit Exp $
+
+*perl-support-4.9 (07 Feb 2011)
+
+ 07 Feb 2011; Tim Harder <radhermit@gentoo.org> +perl-support-4.9.ebuild:
+ Version bump. Don't set tabstop and shiftwidth (bug #339300 by Kent Fredric).
07 Jan 2011; Brent Baude <ranger@gentoo.org> perl-support-4.8.ebuild:
stable ppc, bug 345061
diff --git a/app-vim/perl-support/perl-support-4.9.ebuild b/app-vim/perl-support/perl-support-4.9.ebuild
new file mode 100644
index 000000000000..71e82183238f
--- /dev/null
+++ b/app-vim/perl-support/perl-support-4.9.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-vim/perl-support/perl-support-4.9.ebuild,v 1.1 2011/02/07 14:18:36 radhermit Exp $
+
+EAPI=3
+
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: Perl-IDE - Write and run Perl scripts using menus and hotkeys"
+HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=556"
+SRC_URI="http://www.vim.org/scripts/download_script.php?src_id=14523 -> ${P}.zip"
+LICENSE="as-is"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
+IUSE=""
+
+VIM_PLUGIN_HELPFILES="perlsupport"
+
+DEPEND="app-arch/unzip"
+RDEPEND=""
+
+S="${WORKDIR}"
+
+src_prepare() {
+ # Don't set tabstop and shiftwidth
+ sed -i -e '/=4/s/^/"/' ftplugin/perl.vim
+}