blob: 3dded4c048bcb6c597f55baee09986fa7a8cf67a (
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
37
38
39
40
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/zssh/zssh-1.5a.ebuild,v 1.9 2004/07/14 06:32:56 mr_bones_ Exp $
inherit eutils
DESCRIPTION="A ssh wrapper enabling zmodem up/download in ssh"
HOMEPAGE="http://zssh.sourceforge.net/"
SRC_URI="mirror://sourceforge/zssh/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc"
IUSE="readline nls"
DEPEND="virtual/libc"
RDEPEND="${DEPEND}
net-misc/openssh
net-misc/lrzsz"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PF}-gentoo-termcap.diff
epatch ${FILESDIR}/${PF}-gentoo-include.diff
}
src_compile() {
econf \
`use_enable nls` \
`use_enable readline` || die
emake || die
}
src_install() {
dobin zssh ztelnet
doman zssh.1 ztelnet.1
dodoc CHANGES FAQ README TODO
}
|