blob: 19af091809b74356c848b5487eef73cd74923457 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/rssh-2.1.1.ebuild,v 1.4 2003/10/14 20:11:02 max Exp $
DESCRIPTION="Restricted shell for SSHd."
HOMEPAGE="http://rssh.sourceforge.net/"
SRC_URI="mirror://sourceforge/rssh/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86 ppc sparc"
IUSE="static"
RDEPEND="virtual/ssh"
src_compile() {
econf \
--libexecdir=/usr/lib/misc \
--with-scp=/usr/bin/scp \
--with-sftp-server=/usr/lib/misc/sftp-server \
`use_enable static`
emake || die
}
src_install() {
einstall libexecdir="${D}/usr/lib/misc"
dodoc AUTHORS ChangeLog CHROOT INSTALL README TODO
}
|