diff options
author | Rob Cakebread <pythonhead@gentoo.org> | 2005-06-09 16:22:50 +0000 |
---|---|---|
committer | Rob Cakebread <pythonhead@gentoo.org> | 2005-06-09 16:22:50 +0000 |
commit | 1fa04645c0f58be78b584fee0ca24b4bd5b5f240 (patch) | |
tree | c4d2f07ac76ca352d008a2c7c4febb326f525d11 /net-misc/fsh/fsh-1.2-r2.ebuild | |
parent | Added testing livecd-tools 1.0.21_pre3 version. (diff) | |
download | gentoo-2-1fa04645c0f58be78b584fee0ca24b4bd5b5f240.tar.gz gentoo-2-1fa04645c0f58be78b584fee0ca24b4bd5b5f240.tar.bz2 gentoo-2-1fa04645c0f58be78b584fee0ca24b4bd5b5f240.zip |
Fixed FCNTL problem with Python 2.4 bug# 95533
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-misc/fsh/fsh-1.2-r2.ebuild')
-rw-r--r-- | net-misc/fsh/fsh-1.2-r2.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/net-misc/fsh/fsh-1.2-r2.ebuild b/net-misc/fsh/fsh-1.2-r2.ebuild new file mode 100644 index 000000000000..cc369714569c --- /dev/null +++ b/net-misc/fsh/fsh-1.2-r2.ebuild @@ -0,0 +1,36 @@ +# 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 +} |