From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D4BB41382C5 for ; Wed, 7 Feb 2018 22:07:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0880AE0AF0; Wed, 7 Feb 2018 22:07:34 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D5840E0AF0 for ; Wed, 7 Feb 2018 22:07:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 06A8F335C0A for ; Wed, 7 Feb 2018 22:07:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8BCDC1E2 for ; Wed, 7 Feb 2018 22:07:31 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1518041248.922818f5b7a8d8da36bf21c8b4c3cd5f9ae2d0fb.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/rrs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/rrs/rrs-1.70-r1.ebuild X-VCS-Directories: app-shells/rrs/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 922818f5b7a8d8da36bf21c8b4c3cd5f9ae2d0fb X-VCS-Branch: master Date: Wed, 7 Feb 2018 22:07:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 845db2db-2ce1-4412-9c43-3ca3ba16c2c5 X-Archives-Hash: 86ffdb633447bd2c40cbd48d4a97c498 commit: 922818f5b7a8d8da36bf21c8b4c3cd5f9ae2d0fb Author: Patrice Clement gentoo org> AuthorDate: Wed Feb 7 21:25:53 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Wed Feb 7 22:07:28 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=922818f5 app-shells/rrs: clean up old. Package-Manager: Portage-2.3.19, Repoman-2.3.6 app-shells/rrs/rrs-1.70-r1.ebuild | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/app-shells/rrs/rrs-1.70-r1.ebuild b/app-shells/rrs/rrs-1.70-r1.ebuild deleted file mode 100644 index 1bc50a484ef..00000000000 --- a/app-shells/rrs/rrs-1.70-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils toolchain-funcs - -DESCRIPTION="Reverse Remote Shell" -HOMEPAGE="http://freecode.com/projects/rrs" -SRC_URI="http://www.cycom.se/uploads/36/19/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="ssl" - -DEPEND="ssl? ( dev-libs/openssl )" -RDEPEND="${DEPEND}" - -src_prepare() { - epatch "${FILESDIR}"/"${P}"-asneeded.patch - sed -i -e "s/-s //g" Makefile || die -} - -src_compile() { - local target="" - use ssl || target="-nossl" - - emake generic${target} CFLAGS="${CFLAGS}" LDEXTRA="${LDFLAGS}" CC="$(tc-getCC)" -} - -src_install() { - dobin rrs - dodoc CHANGES README - doman rrs.1 -}