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: vile-9.8h.ebuild ChangeLog
Date: Tue, 28 Aug 2012 08:27:47
Message-Id: 20120828082736.4304A209E8@flycatcher.gentoo.org
1 radhermit 12/08/28 08:27:36
2
3 Modified: ChangeLog
4 Added: vile-9.8h.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.46 app-editors/vile/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/ChangeLog?rev=1.46&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/ChangeLog?rev=1.46&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/ChangeLog?r1=1.45&r2=1.46
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-editors/vile/ChangeLog,v
20 retrieving revision 1.45
21 retrieving revision 1.46
22 diff -u -r1.45 -r1.46
23 --- ChangeLog 8 Jul 2012 18:16:13 -0000 1.45
24 +++ ChangeLog 28 Aug 2012 08:27:36 -0000 1.46
25 @@ -1,6 +1,12 @@
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.45 2012/07/08 18:16:13 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/ChangeLog,v 1.46 2012/08/28 08:27:36 radhermit Exp $
30 +
31 +*vile-9.8h (28 Aug 2012)
32 +
33 + 28 Aug 2012; Tim Harder <radhermit@g.o> +vile-9.8h.ebuild,
34 + +files/vile-9.8h-flex.patch:
35 + Version bump.
36
37 08 Jul 2012; Raúl Porcel <armin76@g.o> vile-9.8g.ebuild:
38 alpha/ia64/sparc stable wrt #418409
39
40
41
42 1.1 app-editors/vile/vile-9.8h.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/vile-9.8h.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/vile-9.8h.ebuild?rev=1.1&content-type=text/plain
46
47 Index: vile-9.8h.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-editors/vile/vile-9.8h.ebuild,v 1.1 2012/08/28 08:27:36 radhermit Exp $
52
53 EAPI="4"
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}"/${P}-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 }