diff options
author | Sam James <sam@gentoo.org> | 2023-01-31 18:38:52 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-01-31 18:42:20 +0000 |
commit | cac2eb399f9f21f8cd58cff547b8ae64841175f5 (patch) | |
tree | a772821bb07bc7e2297b052eca624c9b23483606 /app-editors | |
parent | net-libs/nghttp2: Stabilize 1.51.0 arm, #892043 (diff) | |
download | gentoo-cac2eb399f9f21f8cd58cff547b8ae64841175f5.tar.gz gentoo-cac2eb399f9f21f8cd58cff547b8ae64841175f5.tar.bz2 gentoo-cac2eb399f9f21f8cd58cff547b8ae64841175f5.zip |
app-editors/vile: drop 9.8w
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/vile/vile-9.8w.ebuild | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/app-editors/vile/vile-9.8w.ebuild b/app-editors/vile/vile-9.8w.ebuild deleted file mode 100644 index 3243b094a959..000000000000 --- a/app-editors/vile/vile-9.8w.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -# Bump with app-editors/xvile - -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" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~ia64 ppc ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="perl iconv" - -RDEPEND=">=sys-libs/ncurses-5.2:= - virtual/libcrypt:= - iconv? ( virtual/libiconv ) - perl? ( dev-lang/perl:= )" -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/flex - virtual/pkgconfig" -IDEPEND="app-eselect/eselect-vi" - -src_configure() { - econf \ - --disable-stripping \ - --with-ncurses \ - --with-pkg-config \ - $(use_with iconv) \ - $(use_with perl) -} - -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 -} |