Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/xvile/
Date: Wed, 24 Aug 2022 00:48:08
Message-Id: 1661301991.72d910d7dd53fa1e24dfa51fc6df626cd214946b.sam@gentoo
1 commit: 72d910d7dd53fa1e24dfa51fc6df626cd214946b
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 24 00:46:31 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 24 00:46:31 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72d910d7
7
8 app-editors/xvile: add 9.8w
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 app-editors/xvile/Manifest | 1 +
13 app-editors/xvile/xvile-9.8w.ebuild | 48 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 49 insertions(+)
15
16 diff --git a/app-editors/xvile/Manifest b/app-editors/xvile/Manifest
17 index b58629ecdc25..00935df1403b 100644
18 --- a/app-editors/xvile/Manifest
19 +++ b/app-editors/xvile/Manifest
20 @@ -1,2 +1,3 @@
21 DIST vile-9.8t.tgz 2352119 BLAKE2B fc1c75eba09e8be99945ba0d178fd150576d8108f906afb20dba265adaee9e5bea4869415d3ebceabf0b6b56c147add79e9c7e4fe34d7f4744930c3728e4a4a4 SHA512 4be4e37c7231395cae9236796073c2c3e428f1945283785a931c5d4cce94e0f970efa6634b0f9053679a00f4b4577704ea38ded2129e444b26ee9935a1c3d229
22 DIST vile-9.8v.tgz 2405398 BLAKE2B cd8753c57ff95c9b420026128fd19b7c689c99500da7cae91d3160dded46aa101b0cae32daeaf0377d4d72a5e526e8e4f25422bbbff2cc5ecdef10b7f04c8b39 SHA512 b752f26148bd4411ab6b31697459a16d8168f79ffad6b3509d6cf5d40611176b833e56f4bac21fe18ecdd256be467ba96ea98149daceab671002df49508eb8d2
23 +DIST vile-9.8w.tgz 2407322 BLAKE2B 824142c2d081db7c74ab4ce36db63e2d26e82954b32d274477f920b3519c75a249745365f7fb4f117f613c04fddd468394b4636d5f84d9f024eee3cb9c8332ba SHA512 54a96b400f479c633b917691fdab5ec5098ff1d6a6f5390c085635b4449ee7f02988e52c6b442918917455d02d5d74781ed57e4f944422576cf6532caaa446af
24
25 diff --git a/app-editors/xvile/xvile-9.8w.ebuild b/app-editors/xvile/xvile-9.8w.ebuild
26 new file mode 100644
27 index 000000000000..b3a06afe19e8
28 --- /dev/null
29 +++ b/app-editors/xvile/xvile-9.8w.ebuild
30 @@ -0,0 +1,48 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +# Bump with app-editors/vile
37 +
38 +MY_P="${PN/x/}-${PV}"
39 +DESCRIPTION="VI Like Emacs -- yet another full-featured vi clone"
40 +HOMEPAGE="https://invisible-island.net/vile/"
41 +SRC_URI="https://invisible-island.net/archives/vile/current/${MY_P}.tgz"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~riscv ~sparc ~x86"
46 +IUSE="perl"
47 +
48 +RDEPEND="~app-editors/vile-${PV}
49 + virtual/libcrypt:=
50 + >=x11-libs/libX11-1.0.0
51 + >=x11-libs/libXt-1.0.0
52 + >=x11-libs/libICE-1.0.0
53 + >=x11-libs/libSM-1.0.0
54 + >=x11-libs/libXaw-1.0.1
55 + >=x11-libs/libXpm-3.5.4.2
56 + perl? ( dev-lang/perl:= )"
57 +DEPEND="${RDEPEND}
58 + x11-base/xorg-proto
59 + sys-devel/flex"
60 +BDEPEND="virtual/pkgconfig"
61 +
62 +S="${WORKDIR}"/${MY_P}
63 +
64 +src_configure() {
65 + econf \
66 + --disable-stripping \
67 + --with-ncurses \
68 + --with-pkg-config \
69 + --with-x \
70 + $(use_with perl)
71 +}
72 +
73 +src_install() {
74 + dobin xvile
75 + dodoc CHANGES* README doc/*.doc
76 + docinto html
77 + dodoc doc/*.html
78 +}