Portage is a package management system used by Gentoo Linux
# ChangeLog for net-misc/fsh
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/fsh/ChangeLog,v 1.10 2007/05/14 19:45:45 bangert Exp $
14 May 2007; Thilo Bangert
add
22 Feb 2007; Piotr JaroszyĆski
Transition to Manifest2.
*fsh-1.2-r2 (09 Jun 2005)
09 Jun 2005; Rob Cakebread
+files/fsh-1.2-gentoo-fcntl.patch, fsh-1.2-r1.ebuild, +fsh-1.2-r2.ebuild:
Fixed FCNTL problem with Python 2.4 bug# 95533
16 Sep 2004;
added ~amd64
05 Sep 2004; Sven Wegener
Fixed ChangeLog header.
13 Jul 2004; Michael Sterrett
-fsh-1.2.ebuild:
don't set rdepend==depend; tidy
*fsh-1.2-r1 (23 Apr 2003)
23 Apr 2003; Wout Mertens
fsh-1.2-r1.ebuild files/fsh-1.2-fcpwrap.patch:
Fixed bug where fcp user@host would fail. Reported upstream.
*fsh-1.2 (01 Oct 2002)
01 Oct 2002; Daniel Robbins
AUX fsh-1.2-fcpwrap.patch 460 RMD160 54fec4b3b100dfc5c16a436578abf9451d4917a1 SHA1 3937b8e4aea7439a59b5326d0008503141129bbb SHA256 34c6f9a0d7207d56e67d9f9a59adb10e30474e668bf17aed966f62968bee8ffd
AUX fsh-1.2-gentoo-fcntl.patch 1198 RMD160 be507b121a5ba9ec5ff2800be509694d00b2ce4f SHA1 8e3f3be8522fd8a5fcd88d5d2ed6c294ea651ccd SHA256 4738d19bc58f8fda413b27c81b92e8f3c816dafda8b19addb4d24467032b9182
DIST fsh-1.2.tar.gz 152374 RMD160 41f20e5a4001851d2cadc6909b72a17a270acfd2 SHA1 c2f1e923076d368fbb5504dcd1d33c74024b0d1b SHA256 9600882648966272c264cf3f1c41c11c91e704f473af43d8d4e0ac5850298826
EBUILD fsh-1.2-r1.ebuild 841 RMD160 27b82c41f00f136179f693c46853578372409132 SHA1 047f630a77ec5b5dd01c7443aa3bb67b601cf364 SHA256 100be50e33a1fd61c109c32671547bba6059a283135d62acea5cfbe052e9e9dc
EBUILD fsh-1.2-r2.ebuild 910 RMD160 d33421c565336f8dc349da83f5f065a0434620ee SHA1 0b03952c84940be4bc35ac0675aca45c8af22637 SHA256 76226533c232fc69ccabccc5c6781b3798b15e3d668c4266dfd77b36936038df
MISC ChangeLog 1152 RMD160 b848dda946f0db4117cc82ccdad2824161dfc893 SHA1 bb916d4b74ee04ba9d4c16ab9ffb55f3ae0b37db SHA256 3d924b71dfdf19a4ac8040efa1c25592d095e69dfe6e25ee2132c571960d0f62
MISC metadata.xml 231 RMD160 c13056229989c3d4f448a7c7abcff3f4ee7ce13c SHA1 2d63dfb700b223f8f37c078692a81b2237896bce SHA256 4595c2615fd7c9095517949b1a920d4457f92801eb9d46307b18aafe58ec2a8a
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/fsh/fsh-1.2-r1.ebuild,v 1.5 2005/06/09 16:22:50 pythonhead Exp $
inherit eutils
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"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64"
IUSE=""
DEPEND="net-misc/openssh
src_unpack() {
unpack ${A}
# Fix scp invocation parsing when user@host is used
epatch ${FILESDIR}/${P}-fcpwrap.patch
}
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
}
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/fsh/fsh-1.2-r2.ebuild,v 1.1 2005/06/09 16:22:50 pythonhead Exp $
inherit eutils
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"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND="net-misc/openssh
dev-lang/python"
src_unpack() {
unpack ${A}
# Fix scp invocation parsing when user@host is used
epatch ${FILESDIR}/${P}-fcpwrap.patch
# Python 2.4 FCNTL problem:
epatch ${FILESDIR}/${P}-gentoo-fcntl.patch
}
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
}