# 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.20 2003/09/05 22:01:49 msterret 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 amd64" 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 }