diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2016-03-13 19:25:17 +0100 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2016-03-13 19:25:17 +0100 |
commit | d688a44a62b2b647dffe9ae216feac7194d5c5f8 (patch) | |
tree | 67be324686813992e0c222996f585250680b46eb /app-shells | |
parent | dev-python/jsmin: Bump (diff) | |
download | gentoo-d688a44a62b2b647dffe9ae216feac7194d5c5f8.tar.gz gentoo-d688a44a62b2b647dffe9ae216feac7194d5c5f8.tar.bz2 gentoo-d688a44a62b2b647dffe9ae216feac7194d5c5f8.zip |
app-shells/rrs: Remove old
Package-Manager: portage-2.2.28
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/rrs/rrs-1.70.ebuild | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/app-shells/rrs/rrs-1.70.ebuild b/app-shells/rrs/rrs-1.70.ebuild deleted file mode 100644 index dd118c129ce7..000000000000 --- a/app-shells/rrs/rrs-1.70.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# 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 -} |