diff options
Diffstat (limited to 'eclass/vim.eclass')
-rw-r--r-- | eclass/vim.eclass | 22 |
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" |