summaryrefslogtreecommitdiff
path: root/app-vim/perl-support/perl-support-5.4.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-vim/perl-support/perl-support-5.4.ebuild
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-vim/perl-support/perl-support-5.4.ebuild')
-rw-r--r--app-vim/perl-support/perl-support-5.4.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/app-vim/perl-support/perl-support-5.4.ebuild b/app-vim/perl-support/perl-support-5.4.ebuild
deleted file mode 100644
index 740c39da3f61..000000000000
--- a/app-vim/perl-support/perl-support-5.4.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: Perl-IDE - Write and run Perl scripts using menus and hotkeys"
-HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=556"
-SRC_URI="https://github.com/WolfgangMehner/perl-support/archive/version-${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="GPL-2 GPL-2+"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~x86-macos"
-
-VIM_PLUGIN_HELPFILES="perlsupport.txt"
-
-RDEPEND="
- !ppc? ( dev-perl/Devel-NYTProf )
- dev-perl/Perl-Tidy
- dev-perl/Perl-Tags
- dev-perl/Perl-Critic"
-
-S="${WORKDIR}/${PN}-version-${PV}"
-
-src_prepare() {
- # Don't set tabstop and shiftwidth
- sed -i '/=4/s/^/"/' ftplugin/perl.vim || die
-}
-
-src_install() {
- dodoc ${PN}/doc/{ChangeLog,perl-hot-keys.pdf}
- rm -r ${PN}/doc/ || die
-
- vim-plugin_src_install
-}
-
-pkg_postinst() {
- elog "${PN} can utilize the following modules on top of the ones installed as"
- elog "dependencies:"
- elog
- elog "Devel::SmallProf - per-line Perl profiler"
- elog "Devel::FastProf - per-line Perl profiler"
- elog "Devel::ptkdb - Perl debugger using a Tk GUI"
- elog "Pod::Pdf - A POD to PDF translator"
- elog "YAPE::Regex::Explain - regular expression analyzer"
- elog
- elog "You may need to install them separately if you would like to use them."
-}