summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2019-09-05 12:48:26 +0200
committerUlrich Müller <ulm@gentoo.org>2019-09-05 12:48:59 +0200
commitd3e12893fa4996ead15d22db3dd6794ebe36873f (patch)
tree4aa7f4bcf915189b9e705ff22d3c0bdd132b627e /app-editors
parentapp-portage/prefix-toolkit: drop /portage from child's PORTAGE_TMPDIR (diff)
downloadgentoo-d3e12893fa4996ead15d22db3dd6794ebe36873f.tar.gz
gentoo-d3e12893fa4996ead15d22db3dd6794ebe36873f.tar.bz2
gentoo-d3e12893fa4996ead15d22db3dd6794ebe36873f.zip
app-editors/jove: Remove old.
Package-Manager: Portage-2.3.75, Repoman-2.3.17 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/jove/jove-4.16.0.73.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/app-editors/jove/jove-4.16.0.73.ebuild b/app-editors/jove/jove-4.16.0.73.ebuild
deleted file mode 100644
index 72d2a677cad1..000000000000
--- a/app-editors/jove/jove-4.16.0.73.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Jonathan's Own Version of Emacs, a light emacs-like editor without LISP bindings"
-HOMEPAGE="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/"
-SRC_URI="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/${PN}${PV}.tgz"
-
-LICENSE="JOVE"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="doc"
-
-RDEPEND="sys-libs/ncurses"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-S="${WORKDIR}/${PN}${PV}"
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-4.16.0.70.3.1-getline.patch"
- epatch "${FILESDIR}/${P}-build.patch"
- epatch "${FILESDIR}/${P}-sendmail.patch"
- epatch "${FILESDIR}/${P}-doc.patch"
-}
-
-src_compile() {
- tc-export CC
-
- emake OPTFLAGS="${CFLAGS}" \
- SYSDEFS="-DSYSVR4 -D_XOPEN_SOURCE=500" \
- TERMCAPLIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)"
-
- if use doc; then
- # Full manual (*not* man page)
- emake doc/jove.man
- fi
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- keepdir /var/lib/jove/preserve
-
- dodoc README
- if use doc; then
- dodoc doc/jove.man
- fi
-}