diff options
author | Jim Ramsay <lack@gentoo.org> | 2012-07-12 13:01:28 +0000 |
---|---|---|
committer | Jim Ramsay <lack@gentoo.org> | 2012-07-12 13:01:28 +0000 |
commit | 87048b6010ab2d1bc8ebaa0ce3b6e41b6e315952 (patch) | |
tree | b542ace20cef97575c083780ccee5e5806be72af /app-editors/vim | |
parent | Version bump: 7.3.600 is released (diff) | |
download | gentoo-2-87048b6010ab2d1bc8ebaa0ce3b6e41b6e315952.tar.gz gentoo-2-87048b6010ab2d1bc8ebaa0ce3b6e41b6e315952.tar.bz2 gentoo-2-87048b6010ab2d1bc8ebaa0ce3b6e41b6e315952.zip |
Version bump: 7.3.600 is released
(Portage version: 2.1.11.2/cvs/Linux x86_64)
Diffstat (limited to 'app-editors/vim')
-rw-r--r-- | app-editors/vim/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/vim/vim-7.3.600.ebuild | 26 |
2 files changed, 32 insertions, 1 deletions
diff --git a/app-editors/vim/ChangeLog b/app-editors/vim/ChangeLog index 6d10306cf7d4..4dce18131eb8 100644 --- a/app-editors/vim/ChangeLog +++ b/app-editors/vim/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-editors/vim # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/ChangeLog,v 1.416 2012/06/27 14:20:23 lack Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/ChangeLog,v 1.417 2012/07/12 13:01:28 lack Exp $ + +*vim-7.3.600 (12 Jul 2012) + + 12 Jul 2012; Jim Ramsay <jim_ramsay@gentoo.org> +vim-7.3.600.ebuild: + Version bump: 7.3.600 is released *vim-7.3.566 (27 Jun 2012) diff --git a/app-editors/vim/vim-7.3.600.ebuild b/app-editors/vim/vim-7.3.600.ebuild new file mode 100644 index 000000000000..a917a590d402 --- /dev/null +++ b/app-editors/vim/vim-7.3.600.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/vim/vim-7.3.600.ebuild,v 1.1 2012/07/12 13:01:28 lack Exp $ + +EAPI=3 +VIM_VERSION="7.3" +inherit vim + +VIM_ORG_PATCHES="vim-patches-${PV}.patch.bz2" + +SRC_URI="ftp://ftp.vim.org/pub/vim/unix/vim-${VIM_VERSION}.tar.bz2 + http://dev.gentoo.org/~lack/vim/${VIM_ORG_PATCHES}" + +S="${WORKDIR}/vim${VIM_VERSION/.}" +DESCRIPTION="Vim, an improved vi-style text editor" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +src_prepare() { + vim_src_prepare + + if [[ ${CHOST} == *-interix* ]]; then + epatch "${FILESDIR}"/${PN}-7.3-interix-link.patch + fi + epatch "${FILESDIR}"/${PN}-7.1.285-darwin-x11link.patch +} |