diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-06-22 23:25:53 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-06-22 23:25:53 +0000 |
commit | de291ea87fc624f270d1ee83efcd2268e1bf1d3f (patch) | |
tree | 13bf3202ee1c0f9406c3db45a57568079eba80e5 /app-shells | |
parent | Marked amd64 as stable. (Manifest recommit) (diff) | |
download | gentoo-2-de291ea87fc624f270d1ee83efcd2268e1bf1d3f.tar.gz gentoo-2-de291ea87fc624f270d1ee83efcd2268e1bf1d3f.tar.bz2 gentoo-2-de291ea87fc624f270d1ee83efcd2268e1bf1d3f.zip |
ver bump for security #54754
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/rssh/ChangeLog | 7 | ||||
-rw-r--r-- | app-shells/rssh/files/digest-rssh-2.1.1 | 1 | ||||
-rw-r--r-- | app-shells/rssh/files/digest-rssh-2.2.1 | 1 | ||||
-rw-r--r-- | app-shells/rssh/rssh-2.2.1.ebuild (renamed from app-shells/rssh/rssh-2.1.1.ebuild) | 10 |
4 files changed, 15 insertions, 4 deletions
diff --git a/app-shells/rssh/ChangeLog b/app-shells/rssh/ChangeLog index 61d85bff8e06..36bd0fa48eb5 100644 --- a/app-shells/rssh/ChangeLog +++ b/app-shells/rssh/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-shells/rssh # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/ChangeLog,v 1.4 2004/04/25 22:59:11 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/ChangeLog,v 1.5 2004/06/22 23:25:53 vapier Exp $ + +*rssh-2.2.1 (22 Jun 2004) + + 22 Jun 2004; Mike Frysinger <vapier@gentoo.org> +rssh-2.2.1.ebuild: + Version bump for security bug #54754. 25 Apr 2004; Aron Griffis <agriffis@gentoo.org> rssh-2.1.1.ebuild: Add die following econf for bug 48950 diff --git a/app-shells/rssh/files/digest-rssh-2.1.1 b/app-shells/rssh/files/digest-rssh-2.1.1 deleted file mode 100644 index 6738a39521c9..000000000000 --- a/app-shells/rssh/files/digest-rssh-2.1.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 d5260ad91fe71ba28ecb310892cc4139 rssh-2.1.1.tar.gz 88858 diff --git a/app-shells/rssh/files/digest-rssh-2.2.1 b/app-shells/rssh/files/digest-rssh-2.2.1 new file mode 100644 index 000000000000..93082c77421c --- /dev/null +++ b/app-shells/rssh/files/digest-rssh-2.2.1 @@ -0,0 +1 @@ +MD5 2d427ee7f4ea46b075fa0ab3f39b4089 rssh-2.2.1.tar.gz 95552 diff --git a/app-shells/rssh/rssh-2.1.1.ebuild b/app-shells/rssh/rssh-2.2.1.ebuild index b32c4f364166..a2a0d6acb6b2 100644 --- a/app-shells/rssh/rssh-2.1.1.ebuild +++ b/app-shells/rssh/rssh-2.2.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 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.5 2004/04/25 22:59:11 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/rssh/rssh-2.2.1.ebuild,v 1.1 2004/06/22 23:25:53 vapier Exp $ DESCRIPTION="Restricted shell for SSHd." HOMEPAGE="http://rssh.sourceforge.net/" @@ -13,6 +13,12 @@ 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 \ @@ -23,6 +29,6 @@ src_compile() { } src_install() { - einstall libexecdir="${D}/usr/lib/misc" + make install DESTDIR=${D} || die dodoc AUTHORS ChangeLog CHROOT INSTALL README TODO } |