Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/rc/
Date: Wed, 29 May 2019 18:07:38
Message-Id: 1559153228.750248f43aba9b75dda5b53f503f7d15fd2897fb.asturm@gentoo
1 commit: 750248f43aba9b75dda5b53f503f7d15fd2897fb
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Thu May 16 19:10:47 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed May 29 18:07:08 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=750248f4
7
8 app-shells/rc: drop old
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-shells/rc/rc-1.7.4.ebuild | 42 ------------------------------------------
14 1 file changed, 42 deletions(-)
15
16 diff --git a/app-shells/rc/rc-1.7.4.ebuild b/app-shells/rc/rc-1.7.4.ebuild
17 deleted file mode 100644
18 index 71bf031e21a..00000000000
19 --- a/app-shells/rc/rc-1.7.4.ebuild
20 +++ /dev/null
21 @@ -1,42 +0,0 @@
22 -# Copyright 1999-2015 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -DESCRIPTION="A reimplementation of the Plan 9 shell"
28 -HOMEPAGE="http://static.tobold.org/"
29 -SRC_URI="http://static.tobold.org/${PN}/${P}.tar.gz"
30 -
31 -LICENSE="rc"
32 -SLOT="0"
33 -KEYWORDS="~amd64 ~x86"
34 -IUSE="libedit readline"
35 -
36 -RDEPEND="readline? ( sys-libs/readline:0 )
37 - libedit? ( dev-libs/libedit )"
38 -DEPEND="${RDEPEND}"
39 -
40 -src_configure() {
41 - local myconf="--with-history"
42 - use readline && myconf="--with-edit=readline"
43 - use libedit && myconf="--with-edit=edit"
44 -
45 - econf \
46 - --disable-dependency-tracking \
47 - "${myconf}"
48 -}
49 -
50 -src_install() {
51 - into /
52 - newbin rc rcsh
53 - newman rc.1 rcsh.1
54 - dodoc AUTHORS ChangeLog NEWS README
55 -}
56 -
57 -pkg_postinst() {
58 - if ! grep -q '^/bin/rcsh$' "${EROOT}"/etc/shells ; then
59 - ebegin "Updating /etc/shells"
60 - echo "/bin/rcsh" >> "${EROOT}"/etc/shells
61 - eend $?
62 - fi
63 -}