summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2013-06-01 09:25:59 +0000
committerTim Harder <radhermit@gentoo.org>2013-06-01 09:25:59 +0000
commitd958a771b3d7aeb3f62d0e51cfca59664795cfe2 (patch)
tree3fcf0d49a08767ebebf0e26cab64ce649f4bd9bb /eclass/vim-plugin.eclass
parentRemove icon from files/ dir and mirror it manually instead. Fixes #471886 (diff)
downloadhistorical-d958a771b3d7aeb3f62d0e51cfca59664795cfe2.tar.gz
historical-d958a771b3d7aeb3f62d0e51cfca59664795cfe2.tar.bz2
historical-d958a771b3d7aeb3f62d0e51cfca59664795cfe2.zip
Don't set SRC_URI for live ebuilds.
Diffstat (limited to 'eclass/vim-plugin.eclass')
-rw-r--r--eclass/vim-plugin.eclass8
1 files changed, 5 insertions, 3 deletions
diff --git a/eclass/vim-plugin.eclass b/eclass/vim-plugin.eclass
index 01e070b3e935..84995f474068 100644
--- a/eclass/vim-plugin.eclass
+++ b/eclass/vim-plugin.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-plugin.eclass,v 1.34 2013/01/27 23:59:35 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/vim-plugin.eclass,v 1.35 2013/06/01 09:25:59 radhermit Exp $
#
# This eclass simplifies installation of app-vim plugins into
# /usr/share/vim/vimfiles. This is a version-independent directory
@@ -16,8 +16,10 @@ IUSE=""
DEPEND="|| ( >=app-editors/vim-${VIM_PLUGIN_VIM_VERSION}
>=app-editors/gvim-${VIM_PLUGIN_VIM_VERSION} )"
RDEPEND="${DEPEND}"
-SRC_URI="mirror://gentoo/${P}.tar.bz2
- http://dev.gentoo.org/~radhermit/vim/${P}.tar.bz2"
+if [[ ${PV} != 9999* ]] ; then
+ SRC_URI="mirror://gentoo/${P}.tar.bz2
+ http://dev.gentoo.org/~radhermit/vim/${P}.tar.bz2"
+fi
SLOT="0"
vim-plugin_src_install() {