Gentoo Archives: gentoo-commits

From: "Alex Alexander (wired)" <wired@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/vifm: ChangeLog vifm-0.7.2.ebuild
Date: Sat, 25 Feb 2012 15:33:57
Message-Id: 20120225153342.4D31B2004B@flycatcher.gentoo.org
1 wired 12/02/25 15:33:42
2
3 Modified: ChangeLog
4 Added: vifm-0.7.2.ebuild
5 Log:
6 version bump, bug #405305
7
8 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.22 app-misc/vifm/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/vifm/ChangeLog?rev=1.22&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/vifm/ChangeLog?rev=1.22&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/vifm/ChangeLog?r1=1.21&r2=1.22
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-misc/vifm/ChangeLog,v
20 retrieving revision 1.21
21 retrieving revision 1.22
22 diff -u -r1.21 -r1.22
23 --- ChangeLog 24 Nov 2011 22:03:54 -0000 1.21
24 +++ ChangeLog 25 Feb 2012 15:33:42 -0000 1.22
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-misc/vifm
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-misc/vifm/ChangeLog,v 1.21 2011/11/24 22:03:54 wired Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-misc/vifm/ChangeLog,v 1.22 2012/02/25 15:33:42 wired Exp $
31 +
32 +*vifm-0.7.2 (25 Feb 2012)
33 +
34 + 25 Feb 2012; Alex Alexander <wired@g.o> +vifm-0.7.2.ebuild:
35 + version bump, bug #405305
36
37 *vifm-0.7.1 (24 Nov 2011)
38
39
40
41
42 1.1 app-misc/vifm/vifm-0.7.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/vifm/vifm-0.7.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/vifm/vifm-0.7.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: vifm-0.7.2.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-misc/vifm/vifm-0.7.2.ebuild,v 1.1 2012/02/25 15:33:42 wired Exp $
52
53 EAPI=4
54 inherit base
55
56 DESCRIPTION="Console file manager with vi(m)-like keybindings"
57 HOMEPAGE="http://vifm.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/vifm/${P}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~s390 ~x86"
63 IUSE="+compatibility +extended-keys +magic vim-plugin vim-syntax"
64
65 DEPEND="
66 >=sys-libs/ncurses-5.7-r7
67 magic? ( sys-apps/file )
68 "
69 RDEPEND="
70 ${DEPEND}
71 vim-plugin? ( >=app-editors/vim-7.3 )
72 vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
73 "
74
75 DOCS=( AUTHORS TODO README )
76
77 S="${WORKDIR}"
78
79 src_configure() {
80 econf \
81 $(use_enable compatibility compatibility-mode) \
82 $(use_enable extended-keys) \
83 $(use_with magic libmagic)
84 }
85
86 src_install() {
87 base_src_install
88
89 if use vim-syntax; then
90 local t
91 for t in ftdetect ftplugin syntax; do
92 insinto /usr/share/vim/vimfiles/"${t}"
93 doins "${S}"/data/vim/"${t}"/"${PN}".vim
94 done
95 fi
96 if use vim-plugin; then
97 local t
98 for t in doc plugin; do
99 insinto /usr/share/vim/vimfiles/"${t}"
100 doins "${S}"/data/vim/"${t}"/"${PN}".*
101 done
102 fi
103 }
104
105 pkg_postinst() {
106 elog "To use vim to view the vifm help, copy /usr/share/${P}/vifm.txt"
107 elog " to ~/.vim/doc/ and run ':helptags ~/.vim/doc' in vim,"
108 elog "then edit ~/.vifm/vifmrc${PV/a/} and set USE_VIM_HELP=1"
109 elog ""
110 elog "To use the vifm plugin in vim, copy /usr/share/${P}/vifm.vim to"
111 elog " /usr/share/vim/vimXX/"
112 }