summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Head <chead@chead.ca>2019-01-15 08:28:33 -0800
committerPatrice Clement <monsieurp@gentoo.org>2019-01-16 23:29:13 +0100
commit4f9867c239fe1d703297a786e85d9036adac1f9b (patch)
tree4362a4fdbb7b9bf8f94a254624537c418673d214 /app-editors/bvi/bvi-1.4.0_alpha.ebuild
parentsys-boot/yaboot: bundle e2fsprogs-1.42.13, bug #641560 (diff)
downloadgentoo-4f9867c239fe1d703297a786e85d9036adac1f9b.tar.gz
gentoo-4f9867c239fe1d703297a786e85d9036adac1f9b.tar.bz2
gentoo-4f9867c239fe1d703297a786e85d9036adac1f9b.zip
app-editors/bvi: clean old versions.
Package-Manager: Portage-2.3.51, Repoman-2.3.11 Signed-off-by: Christopher Head <chead@chead.ca> Closes: https://github.com/gentoo/gentoo/pull/10839 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-editors/bvi/bvi-1.4.0_alpha.ebuild')
-rw-r--r--app-editors/bvi/bvi-1.4.0_alpha.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/app-editors/bvi/bvi-1.4.0_alpha.ebuild b/app-editors/bvi/bvi-1.4.0_alpha.ebuild
deleted file mode 100644
index 6c63395f9c09..000000000000
--- a/app-editors/bvi/bvi-1.4.0_alpha.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit multilib eutils versionator
-
-MY_P=$(replace_version_separator 4 '' ${P})
-
-DESCRIPTION="display-oriented editor for binary files, based on the vi texteditor"
-HOMEPAGE="http://bvi.sourceforge.net/"
-SRC_URI="mirror://sourceforge/bvi/$(replace_version_separator 4 '' ${P}).src.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
-
-DEPEND="sys-libs/ncurses"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/$MY_P"
-
-src_prepare() {
- sed -i -e 's:(INSTALL_PROGRAM) -s:(INSTALL_PROGRAM):g' \
- Makefile.in || die "sed failed in Makefile.in"
-
- epatch_user
-}
-
-src_configure() {
- econf --with-ncurses="${EPREFIX}"/usr
-
- sed -i -e 's:ncurses/term.h:term.h:g' bmore.h || die "sed failed in bmore.h"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "make install failed"
- rm -rf "${D}"/usr/$(get_libdir)/bmore.help
- dodoc README CHANGES CREDITS bmore.help
-}