blob: 185ec32034663eb49a5759ef49971a78acf41b6f (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/utelnetd/utelnetd-0.1.9.ebuild,v 1.1 2004/01/23 00:52:18 matsuu Exp $
DESCRIPTION="A small Telnet daemon, derived from the Axis tools"
HOMEPAGE="http://www.pengutronix.de/software/utelnetd_en.html"
SRC_URI="http://www.pengutronix.de/software/utelnetd/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc ~sparc"
IUSE=""
DEPEND="virtual/glibc"
S=${WORKDIR}/${P}
src_compile() {
emake CC="${CC}" || die
}
src_install() {
dosbin utelnetd || die
dodoc ChangeLog README
exeinto /etc/init.d; newexe ${FILESDIR}/utelnetd.initd utelnetd
}
|