blob: d33b6342ffa9db894ff08370dde128ad756dfcc2 (
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
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-telnetd/netkit-telnetd-0.17-r3.ebuild,v 1.18 2003/04/09 19:05:33 mholzer Exp $
inherit eutils
IUSE=""
P2=netkit-telnet-${PV}
S=${WORKDIR}/${P2}
DESCRIPTION="Standard Linux telnet client and server"
SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/${P2}.tar.gz"
HOMEPAGE="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/"
SLOT="0"
LICENSE="BSD"
KEYWORDS="x86 ppc sparc alpha hppa mips"
DEPEND=">=sys-libs/ncurses-5.2"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/netkit-telnetd-0.17-gentoo.patch
}
src_compile() {
./configure --prefix=/usr || die
cp MCONFIG MCONFIG.orig
sed \
-e "s:-pipe -O2:${CFLAGS}:" \
-e "s:-Wpointer-arith::" \
MCONFIG.orig > MCONFIG
make || die
cd telnetlogin
make || die
}
src_install() {
into /usr
dobin telnet/telnet
#that's it if we're going on a build image
use build && return
dosbin telnetd/telnetd
dosym telnetd /usr/sbin/in.telnetd
dosbin telnetlogin/telnetlogin
doman telnet/telnet.1
doman telnetd/*.8
doman telnetd/issue.net.5
dosym telnetd.8.gz /usr/share/man/man8/in.telnetd.8.gz
doman telnetlogin/telnetlogin.8
dodoc BUGS ChangeLog README
dodoc ${FILESDIR}/net.issue.sample
newdoc telnet/README README.telnet
newdoc telnet/TODO TODO.telnet
insinto /etc/xinetd.d
newins ${FILESDIR}/telnetd.xinetd telnetd
}
|