diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2002-10-02 03:46:02 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2002-10-02 03:46:02 +0000 |
commit | 2235e8c2dacbf22c9a11715bcebb7208c48ded28 (patch) | |
tree | bdaf316c7cf0aaf6ef8e9d95b529dedf8b28336f /net-misc/fsh | |
parent | version bump (diff) | |
download | gentoo-2-2235e8c2dacbf22c9a11715bcebb7208c48ded28.tar.gz gentoo-2-2235e8c2dacbf22c9a11715bcebb7208c48ded28.tar.bz2 gentoo-2-2235e8c2dacbf22c9a11715bcebb7208c48ded28.zip |
Adding fsh which may allow us to speed up cvs/ssh connects
Diffstat (limited to 'net-misc/fsh')
-rw-r--r-- | net-misc/fsh/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/fsh/files/digest-fsh-1.2 | 1 | ||||
-rw-r--r-- | net-misc/fsh/fsh-1.2.ebuild | 21 |
3 files changed, 29 insertions, 0 deletions
diff --git a/net-misc/fsh/ChangeLog b/net-misc/fsh/ChangeLog new file mode 100644 index 000000000000..3058c84ee80c --- /dev/null +++ b/net-misc/fsh/ChangeLog @@ -0,0 +1,7 @@ +# ChangeLog for net-misc/fsh +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/net-misc/fsh/ChangeLog,v 1.1 2002/10/02 03:46:02 drobbins Exp $ + +*fsh-1.2 (01 Oct 2002) + + 01 Oct 2002; Daniel Robbins <drobbins@gentoo.org>: Initial package. diff --git a/net-misc/fsh/files/digest-fsh-1.2 b/net-misc/fsh/files/digest-fsh-1.2 new file mode 100644 index 000000000000..1b2164e12be6 --- /dev/null +++ b/net-misc/fsh/files/digest-fsh-1.2 @@ -0,0 +1 @@ +MD5 74d7fc65044d1c9c27c6e9edbbde9c68 fsh-1.2.tar.gz 152374 diff --git a/net-misc/fsh/fsh-1.2.ebuild b/net-misc/fsh/fsh-1.2.ebuild new file mode 100644 index 000000000000..dd2badf78f81 --- /dev/null +++ b/net-misc/fsh/fsh-1.2.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/fsh/fsh-1.2.ebuild,v 1.1 2002/10/02 03:46:02 drobbins Exp $ + +DESCRIPTION="System to allow fast-reuse of a ssh secure tunnel to avoid connection lag" +HOMEPAGE="http://www.lysator.liu.se/fsh/" +SRC_URI="http://www.lysator.liu.se/fsh/${P}.tar.gz" +KEYWORDS="x86" +SLOT="0" +LICENSE="GPL-2" +RDEPEND="net-misc/openssh dev-lang/python" + +src_compile() { + ./configure --prefix=/usr --infodir=/usr/share/info + make || die +} + +src_install() { + make DESTDIR=${D} install + dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README* THANKS TODO +} |