blob: 3788f5ace9f36fa33e704e63597402a9865cd4f5 (
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
36
37
38
39
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/scponly/scponly-3.7.ebuild,v 1.5 2004/06/25 00:09:58 agriffis Exp $
DESCRIPTION="A tiny psuedoshell which only permits scp and sftp"
SRC_URI="http://www.sublimation.org/scponly/${P}.tgz"
HOMEPAGE="http://www.sublimation.org/scponly/"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/glibc
net-misc/openssh"
S=${WORKDIR}/${P}
src_compile() {
PATH="${PATH}:/usr/lib/misc" ./configure \
--prefix=/usr \
--mandir=/usr/share/man \
--sysconfdir=/etc \
|| die "./configure failed"
emake || die
}
src_install () {
make prefix=${D}/usr \
mandir=${D}/usr/share/man \
CONFDIR=${D}/etc/scponly \
install || die
grep -v scponly /etc/shells > ${D}/etc/shells
echo "/usr/bin/scponly" >> ${D}/etc/shells
dodoc AUTHOR CHANGELOG CONTRIB README TODO
}
|