You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-shells/rrs/rrs-1.70.ebuild

39 lines
764 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
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_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-asneeded.patch
}
src_compile() {
local target=""
use ssl || target="-nossl"
sed -i -e "s/-s //g" Makefile || die
emake generic${target} CFLAGS="${CFLAGS}" LDEXTRA="${LDFLAGS}" \
CC="$(tc-getCC)" || die "emake failed"
}
src_install() {
dobin rrs || die
dodoc CHANGES README
doman rrs.1
}