blob: e80e738d3140228c76af0f488888331b80524352 (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Michael Conrad Tilstra <michael@gentoo.org> <tadpol@tadpol.org>
# $Header: /var/cvsroot/gentoo-x86/app-misc/ckermit/ckermit-7.0.ebuild,v 1.3 2001/08/11 04:42:31 drobbins Exp $
#P=
A=cku197.tar.gz
S=${WORKDIR}
DESCRIPTION="C-Kermit is a combined serial and network communication software package offering a consistent, medium-independent, cross-platform approach to connection establishment, terminal sessions, file transfer, character-set translation, numeric and alphanumeric paging, and automation of communication tasks."
SRC_URI="ftp://kermit.columbia.edu/kermit/archives/${A}"
HOMEPAGE="http://www.kermit-project.org/"
DEPEND="virtual/glibc
>=sys-libs/ncurses-5.2"
src_unpack () {
unpack ${A}
cd ${S}
patch -p0 < ${FILESDIR}/${PF}-gentoo.diff
cp makefile makefile.orig
sed -e "s:-O:$CFLAGS:" makefile.orig > makefile
}
src_compile() {
try make KFLAGS="-DCK_SHADOW" linux
}
src_install () {
dodir /usr/bin
dodir /usr/share/man/man1
dodir /usr/doc/${P}
try make DESTDIR=${D} BINDIR=/usr/bin MANDIR=/usr/share/man/man1 \
INFODIR=${D}/usr/doc/${P} MANEXT=1 install
}
|