mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-16 07:01:08 +00:00
78 lines
1.6 KiB
Bash
78 lines
1.6 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
# Bump with app-editors/xvile
|
|
GENTOO_DEPEND_ON_PERL="no"
|
|
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/thomasdickey.asc
|
|
inherit perl-module verify-sig
|
|
|
|
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/${P}.tgz"
|
|
SRC_URI+=" verify-sig? ( https://invisible-island.net/archives/vile/current/${P}.tgz.asc )"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ppc ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
|
|
IUSE="perl iconv ${GENTOO_PERL_USESTRING}"
|
|
|
|
RDEPEND="
|
|
>=sys-libs/ncurses-5.2:=
|
|
virtual/libcrypt:=
|
|
iconv? ( virtual/libiconv )
|
|
perl? (
|
|
${GENTOO_PERL_DEPSTRING}
|
|
dev-lang/perl:=
|
|
)
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
app-alternatives/lex
|
|
virtual/pkgconfig
|
|
verify-sig? ( >=sec-keys/openpgp-keys-thomasdickey-20240114 )
|
|
"
|
|
IDEPEND="app-eselect/eselect-vi"
|
|
|
|
src_prepare() {
|
|
# Avoid perl-module_src_prepare
|
|
default
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
--disable-stripping \
|
|
--with-ncurses \
|
|
--with-pkg-config \
|
|
$(use_with iconv) \
|
|
$(use_with perl)
|
|
}
|
|
|
|
src_compile() {
|
|
# Avoid perl-module_src_compile
|
|
default
|
|
}
|
|
|
|
src_test() {
|
|
# Avoid perl-module_src_test
|
|
default
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install
|
|
|
|
dodoc CHANGES* README doc/*.doc
|
|
docinto html
|
|
dodoc doc/*.html
|
|
}
|
|
|
|
pkg_postinst() {
|
|
einfo "Updating ${EPREFIX}/usr/bin/vi symlink"
|
|
eselect vi update --if-unset
|
|
}
|
|
|
|
pkg_postrm() {
|
|
einfo "Updating ${EPREFIX}/usr/bin/vi symlink"
|
|
eselect vi update --if-unset
|
|
}
|