diff options
Diffstat (limited to 'app-shells/rssh/rssh-2.3.3.ebuild')
-rw-r--r-- | app-shells/rssh/rssh-2.3.3.ebuild | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/app-shells/rssh/rssh-2.3.3.ebuild b/app-shells/rssh/rssh-2.3.3.ebuild deleted file mode 100644 index 749df8e7fbd8..000000000000 --- a/app-shells/rssh/rssh-2.3.3.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/rssh-2.3.3.ebuild,v 1.5 2011/04/30 17:29:18 armin76 Exp $ - -inherit multilib - -DESCRIPTION="Restricted shell for SSHd" -HOMEPAGE="http://rssh.sourceforge.net/" -SRC_URI="mirror://sourceforge/rssh/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ppc sparc x86" -IUSE="static" - -RDEPEND="virtual/ssh" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i 's:chmod u+s $(:chmod u+s $(DESTDIR)$(:' Makefile.in -} - -src_compile() { - econf \ - --libexecdir='$(libdir)/misc' \ - --with-scp=/usr/bin/scp \ - --with-sftp-server="/usr/$(get_libdir)/misc/sftp-server" \ - $(use_enable static) \ - || die "econf failed" - emake || die -} - -src_install() { - make install DESTDIR="${D}" || die - dodoc AUTHORS ChangeLog CHROOT INSTALL README TODO -} |