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.8k.ebuild
Date: Tue, 27 Aug 2013 07:32:54
Message-Id: 20130827073249.3092E2004C@flycatcher.gentoo.org
1 radhermit 13/08/27 07:32:49
2
3 Modified: ChangeLog
4 Added: xvile-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.33 app-editors/xvile/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/ChangeLog?rev=1.33&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/ChangeLog?rev=1.33&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/ChangeLog?r1=1.32&r2=1.33
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-editors/xvile/ChangeLog,v
20 retrieving revision 1.32
21 retrieving revision 1.33
22 diff -u -r1.32 -r1.33
23 --- ChangeLog 28 Aug 2012 08:35:45 -0000 1.32
24 +++ ChangeLog 27 Aug 2013 07:32:49 -0000 1.33
25 @@ -1,6 +1,11 @@
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.32 2012/08/28 08:35:45 radhermit Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-editors/xvile/ChangeLog,v 1.33 2013/08/27 07:32:49 radhermit Exp $
31 +
32 +*xvile-9.8k (27 Aug 2013)
33 +
34 + 27 Aug 2013; Tim Harder <radhermit@g.o> +xvile-9.8k.ebuild:
35 + Version bump.
36
37 *xvile-9.8h (28 Aug 2012)
38
39
40
41
42 1.1 app-editors/xvile/xvile-9.8k.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/xvile-9.8k.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/xvile-9.8k.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xvile-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/xvile/xvile-9.8k.ebuild,v 1.1 2013/08/27 07:32:49 radhermit Exp $
52
53 EAPI="5"
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}"/vile-9.8h-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 }