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