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 223E1139085 for ; Mon, 26 Dec 2016 00:31:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0B8F2343B5; Mon, 26 Dec 2016 00:30:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BFED82343B5 for ; Mon, 26 Dec 2016 00:30:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BE12934102B for ; Mon, 26 Dec 2016 00:30:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1163424E9 for ; Mon, 26 Dec 2016 00:30:19 +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: <1482712175.7d814f26e156722a4541d56466dc3dfb5c0b6b2f.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-r2.ebuild X-VCS-Directories: app-shells/rrs/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 7d814f26e156722a4541d56466dc3dfb5c0b6b2f X-VCS-Branch: master Date: Mon, 26 Dec 2016 00:30:19 +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: 626f17e2-1f69-4cc8-a842-c6dda34537b1 X-Archives-Hash: 9082d875996a3b2f2caf9de7837b2b65 commit: 7d814f26e156722a4541d56466dc3dfb5c0b6b2f Author: Patrice Clement gentoo org> AuthorDate: Mon Dec 26 00:09:21 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Mon Dec 26 00:29:35 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d814f26 app-shells/rrs: EAPI 6 bump. Package-Manager: portage-2.3.0 app-shells/rrs/rrs-1.70-r2.ebuild | 41 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/app-shells/rrs/rrs-1.70-r2.ebuild b/app-shells/rrs/rrs-1.70-r2.ebuild new file mode 100644 index 00000000..9978775 --- /dev/null +++ b/app-shells/rrs/rrs-1.70-r2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit 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:0= )" +RDEPEND="${DEPEND}" + +PATCH=( "${FILESDIR}"/"${P}"-asneeded.patch) + +DOCS=( CHANGES README ) + +src_prepare() { + default + 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 "${PN}" + doman "${PN}.1" + einstalldocs +}