aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/netkit-telnet/netkit-telnet_0.17.bb
blob: f15a88593f82361718025e67af60a794768db787 (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
SECTION = "base"
DESCRIPTION = "netkit-telnet includes the telnet daemon and client."
DEPENDS = "ncurses"
LICENSE = "BSD"
PR = "r1"

SRC_URI = "ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-telnet-${PV}.tar.gz \
           file://netkit-telnet-debian_0.17-36.diff;patch=1 \
           file://cross-compile.patch;patch=1 "

do_configure () {
    ./configure --prefix=${prefix}

    # Inject our ldflags into the config... it is not horning them otherwise
    echo "LDFLAGS=${LDFLAGS}" > MCONFIG
}


do_compile () {
	oe_runmake 'CC=${CC}' 'LD=${LD}' 'LDFLAGS=${LDFLAGS}' SUB=telnet
}

do_install () {
    install -d ${D}${bindir}
    install -m 0755 telnet/telnet ${D}${bindir}/telnet.${PN}
}

pkg_postinst_${PN} () {
#!/bin/sh
    update-alternatives --install ${bindir}/telnet telnet telnet.${PN} 100
}

pkg_prerm_${PN} () {
 #!/bin/sh
   update-alternatives --remove telnet telnet.${PN} 100
}