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.8e.ebuild
Date: Sat, 30 Apr 2011 20:53:44
Message-Id: 20110430205334.5113920054@flycatcher.gentoo.org
1 radhermit 11/04/30 20:53:34
2
3 Modified: ChangeLog
4 Added: xvile-9.8e.ebuild
5 Log:
6 Version bump. Update to EAPI 4.
7
8 (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.21 app-editors/xvile/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/ChangeLog?rev=1.21&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/ChangeLog?rev=1.21&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/ChangeLog?r1=1.20&r2=1.21
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-editors/xvile/ChangeLog,v
20 retrieving revision 1.20
21 retrieving revision 1.21
22 diff -u -r1.20 -r1.21
23 --- ChangeLog 29 Jun 2008 19:34:26 -0000 1.20
24 +++ ChangeLog 30 Apr 2011 20:53:34 -0000 1.21
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-editors/xvile
27 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-editors/xvile/ChangeLog,v 1.20 2008/06/29 19:34:26 hawking Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-editors/xvile/ChangeLog,v 1.21 2011/04/30 20:53:34 radhermit Exp $
31 +
32 +*xvile-9.8e (30 Apr 2011)
33 +
34 + 30 Apr 2011; Tim Harder <radhermit@g.o> +xvile-9.8e.ebuild:
35 + Version bump. Update to EAPI 4.
36
37 *xvile-9.6 (29 Jun 2008)
38
39
40
41
42 1.1 app-editors/xvile/xvile-9.8e.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/xvile-9.8e.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/xvile-9.8e.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xvile-9.8e.ebuild
48 ===================================================================
49 # Copyright 1999-2011 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.8e.ebuild,v 1.1 2011/04/30 20:53:34 radhermit Exp $
52
53 EAPI=4
54
55 inherit eutils versionator
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_configure() {
82 econf \
83 --with-ncurses \
84 --with-x \
85 $(use_with perl)
86 }
87
88 src_install() {
89 dobin xvile
90 dodoc CHANGES* README doc/*.doc
91 dohtml doc/*.html
92 }