Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/rrs/
Date: Wed, 07 Feb 2018 22:07:34
Message-Id: 1518041248.922818f5b7a8d8da36bf21c8b4c3cd5f9ae2d0fb.monsieurp@gentoo
1 commit: 922818f5b7a8d8da36bf21c8b4c3cd5f9ae2d0fb
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 7 21:25:53 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 7 22:07:28 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=922818f5
7
8 app-shells/rrs: clean up old.
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 app-shells/rrs/rrs-1.70-r1.ebuild | 36 ------------------------------------
13 1 file changed, 36 deletions(-)
14
15 diff --git a/app-shells/rrs/rrs-1.70-r1.ebuild b/app-shells/rrs/rrs-1.70-r1.ebuild
16 deleted file mode 100644
17 index 1bc50a484ef..00000000000
18 --- a/app-shells/rrs/rrs-1.70-r1.ebuild
19 +++ /dev/null
20 @@ -1,36 +0,0 @@
21 -# Copyright 1999-2013 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=4
25 -
26 -inherit eutils toolchain-funcs
27 -
28 -DESCRIPTION="Reverse Remote Shell"
29 -HOMEPAGE="http://freecode.com/projects/rrs"
30 -SRC_URI="http://www.cycom.se/uploads/36/19/${P}.tar.gz"
31 -
32 -LICENSE="MIT"
33 -SLOT="0"
34 -KEYWORDS="amd64 ppc x86"
35 -IUSE="ssl"
36 -
37 -DEPEND="ssl? ( dev-libs/openssl )"
38 -RDEPEND="${DEPEND}"
39 -
40 -src_prepare() {
41 - epatch "${FILESDIR}"/"${P}"-asneeded.patch
42 - sed -i -e "s/-s //g" Makefile || die
43 -}
44 -
45 -src_compile() {
46 - local target=""
47 - use ssl || target="-nossl"
48 -
49 - emake generic${target} CFLAGS="${CFLAGS}" LDEXTRA="${LDFLAGS}" CC="$(tc-getCC)"
50 -}
51 -
52 -src_install() {
53 - dobin rrs
54 - dodoc CHANGES README
55 - doman rrs.1
56 -}