summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2003-07-27 08:43:19 +0000
committerMike Frysinger <vapier@gentoo.org>2003-07-27 08:43:19 +0000
commitaeb465310dbd72fb8079f678d9234fb04a42f1a2 (patch)
tree5b9246516b8a0c416aa253a4848db1bbf59983cd /app-shells/rssh
parentAdd gtk2 dependency (diff)
downloadgentoo-2-aeb465310dbd72fb8079f678d9234fb04a42f1a2.tar.gz
gentoo-2-aeb465310dbd72fb8079f678d9234fb04a42f1a2.tar.bz2
gentoo-2-aeb465310dbd72fb8079f678d9234fb04a42f1a2.zip
initial ebuild
Diffstat (limited to 'app-shells/rssh')
-rw-r--r--app-shells/rssh/ChangeLog8
-rw-r--r--app-shells/rssh/Manifest3
-rw-r--r--app-shells/rssh/files/digest-rssh-2.1.11
-rw-r--r--app-shells/rssh/rssh-2.1.1.ebuild28
4 files changed, 40 insertions, 0 deletions
diff --git a/app-shells/rssh/ChangeLog b/app-shells/rssh/ChangeLog
new file mode 100644
index 000000000000..c18ce7cc6bae
--- /dev/null
+++ b/app-shells/rssh/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for app-shells/rssh
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/ChangeLog,v 1.1 2003/07/27 08:43:05 vapier Exp $
+
+*rssh-2.1.1 (27 Jul 2003)
+
+ 27 Jul 2003; Mike Frysinger <vapier@gentoo.org> :
+ Initial version. Obtained from gentoo.de Stefan Knoblich <stefan.knoblich@t-online.de>.
diff --git a/app-shells/rssh/Manifest b/app-shells/rssh/Manifest
new file mode 100644
index 000000000000..e02162b64261
--- /dev/null
+++ b/app-shells/rssh/Manifest
@@ -0,0 +1,3 @@
+MD5 3d412192c75721ed0099677d2bf637e9 rssh-2.1.1.ebuild 678
+MD5 6b415835c1990f66d38c723853af0003 files/digest-rssh-2.1.1 61
+MD5 2f9d3977b8501a0394094ff2f52ab539 ChangeLog 382
diff --git a/app-shells/rssh/files/digest-rssh-2.1.1 b/app-shells/rssh/files/digest-rssh-2.1.1
new file mode 100644
index 000000000000..6738a39521c9
--- /dev/null
+++ b/app-shells/rssh/files/digest-rssh-2.1.1
@@ -0,0 +1 @@
+MD5 d5260ad91fe71ba28ecb310892cc4139 rssh-2.1.1.tar.gz 88858
diff --git a/app-shells/rssh/rssh-2.1.1.ebuild b/app-shells/rssh/rssh-2.1.1.ebuild
new file mode 100644
index 000000000000..fd5369c730f3
--- /dev/null
+++ b/app-shells/rssh/rssh-2.1.1.ebuild
@@ -0,0 +1,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.1 2003/07/27 08:43:05 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="x86 ppc"
+IUSE="static"
+
+RDEPEND="net-misc/openssh"
+
+src_compile() {
+ econf \
+ --with-scp=/usr/bin/scp \
+ --with-sftp-server=/usr/lib/misc/sftp-server \
+ `use_enable static` \
+ || die
+ emake || die
+}
+
+src_install() {
+ einstall || die
+ dodoc AUTHORS ChangeLog CHROOT INSTALL README TODO
+}