Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/cctree/
Date: Sun, 28 Aug 2016 20:24:08
Message-Id: 1472415815.c595102bbd8b2de4067d50a589cef1fb04f3457c.monsieurp@gentoo
1 commit: c595102bbd8b2de4067d50a589cef1fb04f3457c
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 28 20:23:35 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 28 20:23:35 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c595102b
7
8 app-vim/cctree: EAPI 6 bump.
9
10 Package-Manager: portage-2.2.28
11
12 app-vim/cctree/cctree-1.61-r1.ebuild | 29 +++++++++++++++++++++++++++++
13 1 file changed, 29 insertions(+)
14
15 diff --git a/app-vim/cctree/cctree-1.61-r1.ebuild b/app-vim/cctree/cctree-1.61-r1.ebuild
16 new file mode 100644
17 index 00000000..80cb57b
18 --- /dev/null
19 +++ b/app-vim/cctree/cctree-1.61-r1.ebuild
20 @@ -0,0 +1,29 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +inherit vim-plugin
28 +
29 +DESCRIPTION="vim plugin: Cscope based source-code browser and code flow analysis tool"
30 +HOMEPAGE="https://sites.google.com/site/vimcctree/"
31 +LICENSE="bufexplorer.vim"
32 +KEYWORDS="~amd64 ~x86"
33 +IUSE=""
34 +
35 +VIM_PLUGIN_HELPFILES="${PN}.txt"
36 +
37 +RDEPEND="dev-util/cscope"
38 +
39 +src_prepare() {
40 + # There's good documentation included with the script, but it's not
41 + # in a helpfile. Since there's rather too much information to include
42 + # in a VIM_PLUGIN_HELPTEXT, we'll sed ourselves a help doc.
43 + mkdir doc || die
44 + sed -e '/" Name Of File/,/".\+Community/!d' -e 's/^" \?//' \
45 + -e 's/\(Name Of File: \)\([^.]\+\)\.vim/\1*\L\2.txt*/' \
46 + ftplugin/${PN}.vim > doc/${PN}.txt || die
47 +
48 + default
49 +}