summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-01-10 00:04:53 +0000
committerMike Frysinger <vapier@gentoo.org>2006-01-10 00:04:53 +0000
commitf96937113b1f4c4ec4b321223e91931039a128ae (patch)
tree3da0f4d62431b11a252845e1babc107300278e8b /app-shells/rssh
parentold (diff)
downloadgentoo-2-f96937113b1f4c4ec4b321223e91931039a128ae.tar.gz
gentoo-2-f96937113b1f4c4ec4b321223e91931039a128ae.tar.bz2
gentoo-2-f96937113b1f4c4ec4b321223e91931039a128ae.zip
Version bump #118433 by Micheal Marineau.
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'app-shells/rssh')
-rw-r--r--app-shells/rssh/ChangeLog9
-rw-r--r--app-shells/rssh/files/digest-rssh-2.3.21
-rw-r--r--app-shells/rssh/rssh-2.3.2.ebuild35
3 files changed, 43 insertions, 2 deletions
diff --git a/app-shells/rssh/ChangeLog b/app-shells/rssh/ChangeLog
index d92254f63ce1..2034439fbda2 100644
--- a/app-shells/rssh/ChangeLog
+++ b/app-shells/rssh/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-shells/rssh
-# 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 $
+# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/ChangeLog,v 1.12 2006/01/10 00:04:53 vapier Exp $
+
+*rssh-2.3.2 (10 Jan 2006)
+
+ 10 Jan 2006; Mike Frysinger <vapier@gentoo.org> +rssh-2.3.2.ebuild:
+ Version bump #118433 by Micheal Marineau.
*rssh-2.3.0 (24 Dec 2005)
diff --git a/app-shells/rssh/files/digest-rssh-2.3.2 b/app-shells/rssh/files/digest-rssh-2.3.2
new file mode 100644
index 000000000000..a423459d0d56
--- /dev/null
+++ b/app-shells/rssh/files/digest-rssh-2.3.2
@@ -0,0 +1 @@
+MD5 65712f2c06ff5fc6fc783bc8c2e4e1ba rssh-2.3.2.tar.gz 113959
diff --git a/app-shells/rssh/rssh-2.3.2.ebuild b/app-shells/rssh/rssh-2.3.2.ebuild
new file mode 100644
index 000000000000..4c5327506e6e
--- /dev/null
+++ b/app-shells/rssh/rssh-2.3.2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/rssh-2.3.2.ebuild,v 1.1 2006/01/10 00:04:53 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
+}