Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/jove/
Date: Thu, 05 Sep 2019 10:49:24
Message-Id: 1567680539.d3e12893fa4996ead15d22db3dd6794ebe36873f.ulm@gentoo
1 commit: d3e12893fa4996ead15d22db3dd6794ebe36873f
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 5 10:48:26 2019 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 5 10:48:59 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3e12893
7
8 app-editors/jove: Remove old.
9
10 Package-Manager: Portage-2.3.75, Repoman-2.3.17
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 app-editors/jove/jove-4.16.0.73.ebuild | 51 ----------------------------------
14 1 file changed, 51 deletions(-)
15
16 diff --git a/app-editors/jove/jove-4.16.0.73.ebuild b/app-editors/jove/jove-4.16.0.73.ebuild
17 deleted file mode 100644
18 index 72d2a677cad..00000000000
19 --- a/app-editors/jove/jove-4.16.0.73.ebuild
20 +++ /dev/null
21 @@ -1,51 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=4
26 -
27 -inherit eutils toolchain-funcs
28 -
29 -DESCRIPTION="Jonathan's Own Version of Emacs, a light emacs-like editor without LISP bindings"
30 -HOMEPAGE="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/"
31 -SRC_URI="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/${PN}${PV}.tgz"
32 -
33 -LICENSE="JOVE"
34 -SLOT="0"
35 -KEYWORDS="amd64 ppc x86"
36 -IUSE="doc"
37 -
38 -RDEPEND="sys-libs/ncurses"
39 -DEPEND="${RDEPEND}
40 - virtual/pkgconfig"
41 -
42 -S="${WORKDIR}/${PN}${PV}"
43 -
44 -src_prepare() {
45 - epatch "${FILESDIR}/${PN}-4.16.0.70.3.1-getline.patch"
46 - epatch "${FILESDIR}/${P}-build.patch"
47 - epatch "${FILESDIR}/${P}-sendmail.patch"
48 - epatch "${FILESDIR}/${P}-doc.patch"
49 -}
50 -
51 -src_compile() {
52 - tc-export CC
53 -
54 - emake OPTFLAGS="${CFLAGS}" \
55 - SYSDEFS="-DSYSVR4 -D_XOPEN_SOURCE=500" \
56 - TERMCAPLIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)"
57 -
58 - if use doc; then
59 - # Full manual (*not* man page)
60 - emake doc/jove.man
61 - fi
62 -}
63 -
64 -src_install() {
65 - emake DESTDIR="${D}" install
66 - keepdir /var/lib/jove/preserve
67 -
68 - dodoc README
69 - if use doc; then
70 - dodoc doc/jove.man
71 - fi
72 -}