diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-09-19 06:08:44 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-09-19 06:08:44 +0000 |
commit | 816fa91f6518fee53c475258c35b2efb3f5a7d0b (patch) | |
tree | 5e6f7be85bc85990f311c777c67d45e8ede2e802 /app-vim | |
parent | Version bump and remove old. (diff) | |
download | gentoo-2-816fa91f6518fee53c475258c35b2efb3f5a7d0b.tar.gz gentoo-2-816fa91f6518fee53c475258c35b2efb3f5a7d0b.tar.bz2 gentoo-2-816fa91f6518fee53c475258c35b2efb3f5a7d0b.zip |
Version bump.
(Portage version: 2.2.0_alpha58/cvs/Linux x86_64)
Diffstat (limited to 'app-vim')
-rw-r--r-- | app-vim/easytags/ChangeLog | 7 | ||||
-rw-r--r-- | app-vim/easytags/easytags-2.5.8.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/app-vim/easytags/ChangeLog b/app-vim/easytags/ChangeLog index 48ca434394f0..5521649def49 100644 --- a/app-vim/easytags/ChangeLog +++ b/app-vim/easytags/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-vim/easytags # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-vim/easytags/ChangeLog,v 1.8 2011/09/14 23:17:51 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/easytags/ChangeLog,v 1.9 2011/09/19 06:08:44 radhermit Exp $ + +*easytags-2.5.8 (19 Sep 2011) + + 19 Sep 2011; Tim Harder <radhermit@gentoo.org> +easytags-2.5.8.ebuild: + Version bump. 14 Sep 2011; Tim Harder <radhermit@gentoo.org> -easytags-2.4.12.ebuild, -easytags-2.5.ebuild: diff --git a/app-vim/easytags/easytags-2.5.8.ebuild b/app-vim/easytags/easytags-2.5.8.ebuild new file mode 100644 index 000000000000..6253742d5b3b --- /dev/null +++ b/app-vim/easytags/easytags-2.5.8.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-vim/easytags/easytags-2.5.8.ebuild,v 1.1 2011/09/19 06:08:44 radhermit Exp $ + +EAPI=4 + +inherit vim-plugin + +DESCRIPTION="vim plugin: automated tag file generation and syntax highlighting" +HOMEPAGE="http://peterodding.com/code/vim/easytags/" +SRC_URI="https://github.com/xolox/vim-${PN}/tarball/${PV} -> ${P}.tar.gz" +LICENSE="MIT" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="|| ( dev-lang/python:2.7 dev-lang/python:2.6 ) + >=app-vim/xolox-misc-20110904 + dev-util/ctags" + +VIM_PLUGIN_HELPFILES="${PN}.txt" + +src_unpack() { + unpack ${A} + mv *-${PN}-* "${S}" +} + +src_prepare() { + # Remove unnecessary files + rm INSTALL.md README.md || die + rm -r autoload/xolox/misc || die +} + +src_install() { + vim-plugin_src_install + + # Make scripts executable + fperms 755 /usr/share/vim/vimfiles/misc/easytags/{normalize-tags,why-so-slow}.py +} |