# 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.8 2004/08/08 00:24:30 slarti Exp $ DESCRIPTION="A tiny pseudoshell 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/libc net-misc/openssh" 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 }