diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-10 00:04:53 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-10 00:04:53 +0000 |
commit | f96937113b1f4c4ec4b321223e91931039a128ae (patch) | |
tree | 3da0f4d62431b11a252845e1babc107300278e8b /app-shells/rssh/rssh-2.3.2.ebuild | |
parent | old (diff) | |
download | gentoo-2-f96937113b1f4c4ec4b321223e91931039a128ae.tar.gz gentoo-2-f96937113b1f4c4ec4b321223e91931039a128ae.tar.bz2 gentoo-2-f96937113b1f4c4ec4b321223e91931039a128ae.zip |
Version bump #118433 by Micheal Marineau.
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'app-shells/rssh/rssh-2.3.2.ebuild')
-rw-r--r-- | app-shells/rssh/rssh-2.3.2.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app-shells/rssh/rssh-2.3.2.ebuild b/app-shells/rssh/rssh-2.3.2.ebuild new file mode 100644 index 000000000000..4c5327506e6e --- /dev/null +++ b/app-shells/rssh/rssh-2.3.2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/rssh-2.3.2.ebuild,v 1.1 2006/01/10 00:04:53 vapier Exp $ + +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=/usr/lib/misc \ + --with-scp=/usr/bin/scp \ + --with-sftp-server=/usr/lib/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 +} |