blob: 4d3e7fdfa6f13c02ca0c1cfee2f2b15076951e3a (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs
DESCRIPTION="A small Telnet daemon, derived from the Axis tools"
HOMEPAGE="http://www.pengutronix.de/software/utelnetd/index_en.html"
SRC_URI="http://www.pengutronix.de/software/utelnetd/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~s390 ~sparc ~x86"
IUSE=""
DEPEND="virtual/shadow"
src_prepare() {
sed -i \
-e "/(STRIP)/d" \
-e "/^CC/s:=.*:= $(tc-getCC):" \
-e "/fomit-frame-pointer/d" \
Makefile || die
default
}
src_install() {
dosbin utelnetd
dodoc ChangeLog README
newinitd "${FILESDIR}"/utelnetd.initd utelnetd
}
|