blob: cc369714569c14e52a48f3a74be8e0ca1c11c82d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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
}
|