summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-12-24 04:18:41 +0000
committerMike Frysinger <vapier@gentoo.org>2005-12-24 04:18:41 +0000
commit906f21467e09995506bb44976d06c3f79e9aba38 (patch)
tree537c2470a7325ed4794a3b8d111bf0445b76cd18 /app-shells/rssh
parentStable on alpha wrt security bug #115851. (diff)
downloadgentoo-2-906f21467e09995506bb44976d06c3f79e9aba38.tar.gz
gentoo-2-906f21467e09995506bb44976d06c3f79e9aba38.tar.bz2
gentoo-2-906f21467e09995506bb44976d06c3f79e9aba38.zip
Version bump #115082.
(Portage version: 2.0.53)
Diffstat (limited to 'app-shells/rssh')
-rw-r--r--app-shells/rssh/ChangeLog9
-rw-r--r--app-shells/rssh/files/digest-rssh-2.3.01
-rw-r--r--app-shells/rssh/rssh-2.3.0.ebuild35
3 files changed, 43 insertions, 2 deletions
diff --git a/app-shells/rssh/ChangeLog b/app-shells/rssh/ChangeLog
index 1b867b70cf69..d92254f63ce1 100644
--- a/app-shells/rssh/ChangeLog
+++ b/app-shells/rssh/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-shells/rssh
-# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/ChangeLog,v 1.10 2005/09/23 19:17:25 cryos Exp $
+# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/ChangeLog,v 1.11 2005/12/24 04:18:40 vapier Exp $
+
+*rssh-2.3.0 (24 Dec 2005)
+
+ 24 Dec 2005; Mike Frysinger <vapier@gentoo.org> +rssh-2.3.0.ebuild:
+ Version bump #115082.
23 Sep 2005; Marcus D. Hanwell <cryos@gentoo.org> rssh-2.2.3.ebuild:
Marked ~amd64.
diff --git a/app-shells/rssh/files/digest-rssh-2.3.0 b/app-shells/rssh/files/digest-rssh-2.3.0
new file mode 100644
index 000000000000..a9ec27f9e7d8
--- /dev/null
+++ b/app-shells/rssh/files/digest-rssh-2.3.0
@@ -0,0 +1 @@
+MD5 4badd1c95bf9b9507e6642598e809dd5 rssh-2.3.0.tar.gz 113701
diff --git a/app-shells/rssh/rssh-2.3.0.ebuild b/app-shells/rssh/rssh-2.3.0.ebuild
new file mode 100644
index 000000000000..6c3987acece2
--- /dev/null
+++ b/app-shells/rssh/rssh-2.3.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/rssh-2.3.0.ebuild,v 1.1 2005/12/24 04:18:41 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="~amd64 ppc sparc 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
+}