diff options
author | Jared H.Hudson <jhhudso@gentoo.org> | 2003-03-04 11:11:49 +0000 |
---|---|---|
committer | Jared H.Hudson <jhhudso@gentoo.org> | 2003-03-04 11:11:49 +0000 |
commit | adfcb74fb9e7bbe8abda792e3594652f11941a20 (patch) | |
tree | b4e015085f4e7f2c1a8444be3050d0d5f5bf8987 /eclass/vim.eclass | |
parent | Security update. (diff) | |
download | gentoo-2-adfcb74fb9e7bbe8abda792e3594652f11941a20.tar.gz gentoo-2-adfcb74fb9e7bbe8abda792e3594652f11941a20.tar.bz2 gentoo-2-adfcb74fb9e7bbe8abda792e3594652f11941a20.zip |
Added support for the vim-language tarball when nls in use flags
Diffstat (limited to 'eclass/vim.eclass')
-rw-r--r-- | eclass/vim.eclass | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass index b53ee0e5b48f..1e6f5eff5818 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.5 2003/02/16 04:26:21 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.6 2003/03/04 11:11:49 jhhudso Exp $ # # Author Ryan Phillips <rphillips@gentoo.org> # @@ -45,12 +45,18 @@ else die "Eek! I don't know how to interpret the version!" fi +LANG="vim-${vim_version}-lang.tar.gz" +if [ ! -z "${LANG}" ]; then + SRC_URI="${SRC_URI} nls? ( ftp://ftp.vim.org/pub/vim/extra/${LANG} )" +fi + HOMEPAGE="http://www.vim.org/" SLOT="0" LICENSE="vim" src_unpack() { unpack ${A} + unpack ${LANG} # Fixup a script to use awk instead of nawk cd ${S}/runtime/tools mv mve.awk mve.awk.old |