blob: 5c4ed7dc46576ab799f167959746838c175cefed (
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
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-misc/zssh/zssh-1.5a.ebuild,v 1.1 2002/12/12 16:39:58 phoenix Exp $
inherit eutils
IUSE=""
S=${WORKDIR}/${P}
DESCRIPTION="A ssh wrapper enabling zmodem up/download in ssh"
SRC_URI="ftp://ftp.sourceforge.net/pub/sourceforge/zssh/zssh-1.5a.tgz"
HOMEPAGE="http://zssh.sourceforge.net/"
KEYWORDS="~x86 sparc sparc64"
LICENSE="GPL-2"
SLOT="0"
DEPEND="virtual/glibc"
RDEPEND="virtual/glibc
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() {
local options
use nls || options="${options} --disable-nls"
use readline || options="${options} --disable-readline"
./configure \
--prefix=/usr \
--host=${CHOST} \
${options} || die
emake || die
}
src_install() {
doman zssh.1
doman ztelnet.1
dobin zssh
dobin ztelnet
dodoc CHANGES FAQ README TODO
}
|