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/xvile: ChangeLog xvile-9.8h.ebuild
Date: Tue, 28 Aug 2012 08:36:01
Message-Id: 20120828083545.C2181209EA@flycatcher.gentoo.org
1 radhermit 12/08/28 08:35:45
2
3 Modified: ChangeLog
4 Added: xvile-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.32 app-editors/xvile/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/ChangeLog?rev=1.32&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/ChangeLog?rev=1.32&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/ChangeLog?r1=1.31&r2=1.32
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-editors/xvile/ChangeLog,v
20 retrieving revision 1.31
21 retrieving revision 1.32
22 diff -u -r1.31 -r1.32
23 --- ChangeLog 28 Aug 2012 08:29:00 -0000 1.31
24 +++ ChangeLog 28 Aug 2012 08:35:45 -0000 1.32
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-editors/xvile
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-editors/xvile/ChangeLog,v 1.31 2012/08/28 08:29:00 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-editors/xvile/ChangeLog,v 1.32 2012/08/28 08:35:45 radhermit Exp $
30 +
31 +*xvile-9.8h (28 Aug 2012)
32 +
33 + 28 Aug 2012; Tim Harder <radhermit@g.o> +xvile-9.8h.ebuild,
34 + +files/vile-9.8h-flex.patch:
35 + Version bump.
36
37 28 Aug 2012; Tim Harder <radhermit@g.o> -xvile-9.4d.ebuild:
38 Remove old.
39
40
41
42 1.1 app-editors/xvile/xvile-9.8h.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/xvile-9.8h.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/xvile-9.8h.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xvile-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/xvile/xvile-9.8h.ebuild,v 1.1 2012/08/28 08:35:45 radhermit Exp $
52
53 EAPI="4"
54
55 inherit eutils
56
57 MY_P="${PN/x/}-${PV}"
58 DESCRIPTION="VI Like Emacs -- yet another full-featured vi clone"
59 HOMEPAGE="http://invisible-island.net/vile/"
60 SRC_URI="ftp://invisible-island.net/vile/current/${MY_P}.tgz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
65 IUSE="perl"
66
67 RDEPEND="perl? ( dev-lang/perl )
68 =app-editors/vile-${PV}
69 >=x11-libs/libX11-1.0.0
70 >=x11-libs/libXt-1.0.0
71 >=x11-libs/libICE-1.0.0
72 >=x11-libs/libSM-1.0.0
73 >=x11-libs/libXaw-1.0.1
74 >=x11-libs/libXpm-3.5.4.2
75 >=x11-proto/xproto-7.0.4"
76 DEPEND="${RDEPEND}
77 sys-devel/flex"
78
79 S="${WORKDIR}/${MY_P}"
80
81 src_prepare() {
82 epatch "${FILESDIR}"/${MY_P}-flex.patch
83 }
84
85 src_configure() {
86 econf \
87 --with-ncurses \
88 --with-x \
89 $(use_with perl)
90 }
91
92 src_install() {
93 dobin xvile
94 dodoc CHANGES* README doc/*.doc
95 dohtml doc/*.html
96 }