summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-10-25 12:32:51 +0000
committerMike Frysinger <vapier@gentoo.org>2004-10-25 12:32:51 +0000
commita880e6509950de5f533200c14a7fc933ed196dda (patch)
tree1d333f51dbb2a192150db8366e289f4380c5f3c3 /app-shells/rssh
parentVersion bump; cleaned up ebuild and added metadata info. (Manifest recommit) (diff)
downloadgentoo-2-a880e6509950de5f533200c14a7fc933ed196dda.tar.gz
gentoo-2-a880e6509950de5f533200c14a7fc933ed196dda.tar.bz2
gentoo-2-a880e6509950de5f533200c14a7fc933ed196dda.zip
Version bump for security #66988.
Diffstat (limited to 'app-shells/rssh')
-rw-r--r--app-shells/rssh/ChangeLog7
-rw-r--r--app-shells/rssh/files/digest-rssh-2.2.21
-rw-r--r--app-shells/rssh/rssh-2.2.2.ebuild35
3 files changed, 42 insertions, 1 deletions
diff --git a/app-shells/rssh/ChangeLog b/app-shells/rssh/ChangeLog
index da0e293162ed..f6f3fd61e5f9 100644
--- a/app-shells/rssh/ChangeLog
+++ b/app-shells/rssh/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-shells/rssh
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/ChangeLog,v 1.6 2004/06/25 03:18:20 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/ChangeLog,v 1.7 2004/10/25 12:32:51 vapier Exp $
+
+*rssh-2.2.2 (25 Oct 2004)
+
+ 25 Oct 2004; Mike Frysinger <vapier@gentoo.org> +rssh-2.2.2.ebuild:
+ Version bump for security #66988.
*rssh-2.2.1 (22 Jun 2004)
diff --git a/app-shells/rssh/files/digest-rssh-2.2.2 b/app-shells/rssh/files/digest-rssh-2.2.2
new file mode 100644
index 000000000000..ed4da92ca825
--- /dev/null
+++ b/app-shells/rssh/files/digest-rssh-2.2.2
@@ -0,0 +1 @@
+MD5 351440cc3909214bae6f2ad2d57a4419 rssh-2.2.2.tar.gz 105255
diff --git a/app-shells/rssh/rssh-2.2.2.ebuild b/app-shells/rssh/rssh-2.2.2.ebuild
new file mode 100644
index 000000000000..62a94552d967
--- /dev/null
+++ b/app-shells/rssh/rssh-2.2.2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/rssh-2.2.2.ebuild,v 1.1 2004/10/25 12:32:51 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="sparc ppc 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
+}