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/ersatz-emacs/
Date: Wed, 02 Oct 2019 22:41:22
Message-Id: 1570056063.4babd11d56d40a7250bd85fba6d890603443f1a8.ulm@gentoo
1 commit: 4babd11d56d40a7250bd85fba6d890603443f1a8
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 2 22:33:41 2019 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 2 22:41:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4babd11d
7
8 app-editors/ersatz-emacs: Remove old.
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 .../ersatz-emacs/ersatz-emacs-20060515.ebuild | 42 ----------------------
14 1 file changed, 42 deletions(-)
15
16 diff --git a/app-editors/ersatz-emacs/ersatz-emacs-20060515.ebuild b/app-editors/ersatz-emacs/ersatz-emacs-20060515.ebuild
17 deleted file mode 100644
18 index 2b147efbad2..00000000000
19 --- a/app-editors/ersatz-emacs/ersatz-emacs-20060515.ebuild
20 +++ /dev/null
21 @@ -1,42 +0,0 @@
22 -# Copyright 1999-2013 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="A very minimal imitation of the famous GNU Emacs editor"
30 -HOMEPAGE="http://hunter.apana.org.au/~cjb/Code/"
31 -# taken from http://hunter.apana.org.au/~cjb/Code/ersatz.tar.gz
32 -SRC_URI="mirror://gentoo/${P}.tar.gz"
33 -
34 -LICENSE="public-domain"
35 -SLOT="0"
36 -KEYWORDS="amd64 x86"
37 -
38 -RDEPEND="!app-editors/ee
39 - sys-libs/ncurses"
40 -DEPEND="${RDEPEND}
41 - virtual/pkgconfig"
42 -
43 -S="${WORKDIR}"
44 -
45 -src_prepare() {
46 - epatch "${FILESDIR}"/${P}-gentoo.patch
47 - sed -i -e "s%/usr/local/share/%/usr/share/doc/${PF}/%" ee.1 \
48 - || die "sed failed"
49 -}
50 -
51 -src_compile() {
52 - emake CC="$(tc-getCC)" \
53 - CFLAGS="${CFLAGS} -Wall" \
54 - LFLAGS="${LDFLAGS} $("$(tc-getPKG_CONFIG)" --libs ncurses)"
55 -}
56 -
57 -src_install() {
58 - # Note: /usr/bin/ee is "easy edit" on FreeBSD, so if this
59 - # is ever keyworded *-fbsd the binary has to be renamed.
60 - dobin ee
61 - doman ee.1
62 - dodoc ChangeLog ERSATZ.keys README
63 -}