summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2013-06-09 20:33:19 +0000
committerTim Harder <radhermit@gentoo.org>2013-06-09 20:33:19 +0000
commitd83593dd3fdffe413a6b03b8a4205ad1c47ce802 (patch)
treef8dbd4165c519d1adc27f19617dd4f137e152a6a /eclass/vim.eclass
parentRename 1.1.0_pre20121004 to 1.1.0_alpha20121004. (diff)
downloadgentoo-2-d83593dd3fdffe413a6b03b8a4205ad1c47ce802.tar.gz
gentoo-2-d83593dd3fdffe413a6b03b8a4205ad1c47ce802.tar.bz2
gentoo-2-d83593dd3fdffe413a6b03b8a4205ad1c47ce802.zip
Remove old runtime and netrw snapshot unpacking support.
Diffstat (limited to 'eclass/vim.eclass')
-rw-r--r--eclass/vim.eclass22
1 files changed, 1 insertions, 21 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass
index 36ad926bdeef..19f9eb3b0e09 100644
--- a/eclass/vim.eclass
+++ b/eclass/vim.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.217 2013/05/30 07:15:55 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.218 2013/06/09 20:33:19 radhermit Exp $
# Authors:
# Jim Ramsay <lack@gentoo.org>
@@ -272,18 +272,6 @@ vim_src_prepare() {
else
apply_vim_patches
fi
-
- # Unpack the runtime snapshot if available (only for vim-core)
- if [[ -n "$VIM_RUNTIME_SNAP" ]] ; then
- cd "${S}" || die
- ebegin "Unpacking vim runtime snapshot"
- rm -rf runtime
- # Changed this from bzip2 |tar to tar -j since the former broke for
- # some reason on freebsd.
- # --spb, 2004/12/18
- tar xjf "${DISTDIR}"/${VIM_RUNTIME_SNAP}
- eend $?
- fi
fi
# Another set of patches borrowed from src rpm to fix syntax errors etc.
@@ -297,14 +285,6 @@ vim_src_prepare() {
epatch "${WORKDIR}"/gentoo/patches-core/
fi
- # Unpack an updated netrw snapshot if necessary. This is nasty. Don't
- # ask, you don't want to know.
- if [[ -n "${VIM_NETRW_SNAP}" ]] ; then
- ebegin "Unpacking updated netrw snapshot"
- tar xjf "${DISTDIR}"/${VIM_NETRW_SNAP} -C runtime/
- eend $?
- fi
-
# Fixup a script to use awk instead of nawk
sed -i '1s|.*|#!'"${EPREFIX}"'/usr/bin/awk -f|' "${S}"/runtime/tools/mve.awk \
|| die "mve.awk sed failed"