Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/vile: ChangeLog vile-9.8k.ebuild
Date: Tue, 27 Aug 2013 07:29:40
Message-Id: 20130827072933.6A12C2004C@flycatcher.gentoo.org
1 radhermit 13/08/27 07:29:33
2
3 Modified: ChangeLog
4 Added: vile-9.8k.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.48 app-editors/vile/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/ChangeLog?rev=1.48&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/ChangeLog?rev=1.48&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/ChangeLog?r1=1.47&r2=1.48
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-editors/vile/ChangeLog,v
20 retrieving revision 1.47
21 retrieving revision 1.48
22 diff -u -r1.47 -r1.48
23 --- ChangeLog 28 Aug 2012 08:29:46 -0000 1.47
24 +++ ChangeLog 27 Aug 2013 07:29:33 -0000 1.48
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-editors/vile
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/ChangeLog,v 1.47 2012/08/28 08:29:46 radhermit Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/ChangeLog,v 1.48 2013/08/27 07:29:33 radhermit Exp $
31 +
32 +*vile-9.8k (27 Aug 2013)
33 +
34 + 27 Aug 2013; Tim Harder <radhermit@g.o> +vile-9.8k.ebuild:
35 + Version bump.
36
37 28 Aug 2012; Tim Harder <radhermit@g.o> -vile-9.4d.ebuild:
38 Remove old.
39
40
41
42 1.1 app-editors/vile/vile-9.8k.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/vile-9.8k.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/vile-9.8k.ebuild?rev=1.1&content-type=text/plain
46
47 Index: vile-9.8k.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-editors/vile/vile-9.8k.ebuild,v 1.1 2013/08/27 07:29:33 radhermit Exp $
52
53 EAPI="5"
54
55 inherit eutils
56
57 DESCRIPTION="VI Like Emacs -- yet another full-featured vi clone"
58 HOMEPAGE="http://invisible-island.net/vile/"
59 SRC_URI="ftp://invisible-island.net/vile/current/${P}.tgz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
64 IUSE="perl"
65
66 RDEPEND=">=sys-libs/ncurses-5.2
67 perl? ( dev-lang/perl )"
68 DEPEND="${RDEPEND}
69 sys-devel/flex
70 app-admin/eselect-vi"
71
72 src_prepare() {
73 epatch "${FILESDIR}"/${PN}-9.8h-flex.patch
74 }
75
76 src_configure() {
77 econf \
78 --with-ncurses \
79 $(use_with perl )
80 }
81
82 src_install() {
83 emake DESTDIR="${D}" install
84 dodoc CHANGES* README doc/*.doc
85 dohtml doc/*.html
86 }
87
88 pkg_postinst() {
89 einfo "Updating ${EPREFIX}/usr/bin/vi symlink"
90 eselect vi update --if-unset
91 }
92
93 pkg_postrm() {
94 einfo "Updating ${EPREFIX}/usr/bin/vi symlink"
95 eselect vi update --if-unset
96 }