blob: 970ba4992c595ef40eab84613d247681186f3008 (
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
40
41
42
43
44
45
46
47
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/scponly/scponly-4.3.ebuild,v 1.5 2006/03/01 07:56:29 hansmi Exp $
inherit eutils
DESCRIPTION="A tiny pseudoshell which only permits scp and sftp"
HOMEPAGE="http://www.sublimation.org/scponly/"
SRC_URI="http://www.sublimation.org/scponly/${P}.tgz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
IUSE=""
DEPEND="virtual/libc
net-misc/openssh"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-getopt.patch
}
src_compile() {
PATH="${PATH}:/usr/$(get_libdir)/misc" \
econf \
--enable-scp-compat \
--enable-rsync-compat \
--enable-chrooted-binary \
|| die "./configure failed"
# --enable-svn-compat\ # subversion SCS cli compatibility
# --enable-svnserv-compat\ # subversion SCS svnserve compatibility
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHOR BUILDING-JAILS.TXT CHANGELOG CONTRIB README TODO
dodoc setup_chroot.sh
}
pkg_postinst() {
einfo "Setting up chroot in pkg_postinst was removed. Please setup manually."
}
|