commit: 5403e434a5c1a7768f7ba5dc7f35bcf6a295972f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 19 22:43:04 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 19 22:43:04 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5403e434
app-editors/xvile: use PERL_FEATURES
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-editors/xvile/xvile-9.8z-r1.ebuild | 76 ++++++++++++++++++++++++++++++++++
1 file changed, 76 insertions(+)
diff --git a/app-editors/xvile/xvile-9.8z-r1.ebuild
b/app-editors/xvile/xvile-9.8z-r1.ebuild
new file mode 100644
index 000000000000..9bee436705e3
--- /dev/null
+++ b/app-editors/xvile/xvile-9.8z-r1.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Bump with app-editors/vile
+GENTOO_DEPEND_ON_PERL="no"
+VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/thomasdickey.asc
+inherit perl-module verify-sig
+
+MY_P="${PN/x/}-${PV}"
+DESCRIPTION="VI Like Emacs -- yet another full-featured vi clone"
+HOMEPAGE="https://invisible-island.net/vile/"
+SRC_URI="https://invisible-island.net/archives/vile/current/${MY_P}.tgz"
+SRC_URI+=" verify-sig? (
https://invisible-island.net/archives/vile/current/${MY_P}.tgz.asc )"
+S="${WORKDIR}"/${MY_P}
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~riscv ~sparc ~x86"
+IUSE="perl ${GENTOO_PERL_USESTRING}"
+
+RDEPEND="
+ ~app-editors/vile-${PV}
+ virtual/libcrypt:=
+ >=x11-libs/libX11-1.0.0
+ >=x11-libs/libXt-1.0.0
+ >=x11-libs/libICE-1.0.0
+ >=x11-libs/libSM-1.0.0
+ >=x11-libs/libXaw-1.0.1
+ >=x11-libs/libXpm-3.5.4.2
+ perl? (
+ ${GENTOO_PERL_DEPSTRING}
+ dev-lang/perl:=
+ )
+"
+DEPEND="
+ ${RDEPEND}
+ x11-base/xorg-proto
+"
+BDEPEND="
+ app-alternatives/lex
+ virtual/pkgconfig
+ verify-sig? ( >=sec-keys/openpgp-keys-thomasdickey-20240114 )
+"
+
+src_prepare() {
+ # Avoid perl-module_src_prepare
+ default
+}
+
+src_configure() {
+ econf \
+ --disable-stripping \
+ --with-ncurses \
+ --with-pkg-config \
+ --with-x \
+ $(use_with perl)
+}
+
+src_compile() {
+ # Avoid perl-module_src_compile
+ default
+}
+
+src_test() {
+ # Avoid perl-module_src_test
+ default
+}
+
+src_install() {
+ dobin xvile
+ dodoc CHANGES* README doc/*.doc
+ docinto html
+ dodoc doc/*.html
+}