blob: 62a94552d9676d373dd0389bb1413c3935b3dbb6 (
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
29
30
31
32
33
34
35
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/rssh-2.2.2.ebuild,v 1.1 2004/10/25 12:32:51 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="sparc ppc 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
}
|