summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/ckermit
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2014-10-10 03:20:04 +0200
committerTudor Florea <tudor.florea@enea.com>2014-10-10 03:20:04 +0200
commit1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch)
tree0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-oe/recipes-support/ckermit
downloadmeta-openembedded-daisy-140929.tar.gz
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-oe/recipes-support/ckermit')
-rw-r--r--meta-oe/recipes-support/ckermit/ckermit_301.bb57
1 files changed, 57 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/ckermit/ckermit_301.bb b/meta-oe/recipes-support/ckermit/ckermit_301.bb
new file mode 100644
index 0000000000..b255f5e7ea
--- /dev/null
+++ b/meta-oe/recipes-support/ckermit/ckermit_301.bb
@@ -0,0 +1,57 @@
1DESCRIPTION = "C-Kermit is a combined serial and network communication \
2software package offering a consistent, medium-independent, \
3cross-platform approach to connection establishment, terminal \
4sessions, file transfer, character-set translation, and automation \
5of communication tasks."
6HOMEPAGE = "http://www.columbia.edu/kermit/"
7SECTION = "console/network"
8LICENSE = "BSD-3-Clause"
9LIC_FILES_CHKSUM = "file://COPYING.TXT;md5=932ca542d6c6cb8a59a0bcd76ab67cc3"
10SRC_URI = "ftp://kermit.columbia.edu/kermit/archives/cku${PV}.tar.gz;subdir=${BPN}-${PV}"
11
12export CC2 = "${CC}"
13export BINDIR = "${bindir}"
14export MANDIR = "${mandir}/man1"
15export INFODIR = "${infodir}"
16
17# Additional flags. For uclibc we add -DNOARROWKEYS which stops ckermit
18# trying to look inside the stdio headers.
19CKERMIT_ADDITIONAL = ""
20CKERMIT_ADDITIONAL_libc-uclibc = "-DNOARROWKEYS"
21
22TARGET_CC_ARCH += "${LDFLAGS}"
23
24do_compile () {
25 # The original makefile doesn't differentiate between CC and CC_FOR_BUILD,
26 # so we build wart manually. Note that you need a ckwart.o with the proper
27 # timestamp to make this hack work:
28 ${BUILD_CC} -c ckwart.c
29 ${BUILD_CC} -o wart ckwart.o
30 ./wart ckcpro.w ckcpro.c
31
32 # read ${S}/ckccfg.txt to understand this :-)
33 oe_runmake wermit CFLAGS="${CFLAGS} -DLINUX -DCK_POSIX_SIG \
34 -DNOTCPOPTS -DLINUXFSSTND -DNOCOTFMC -DPOSIX -DUSE_STRERROR \
35 -DNOSYSLOG -DHAVE_PTMX -DNO_DNS_SRV -DNOGFTIMER \
36 -DNOB_50 -DNOB_75 -DNOB_134 -DNOB_150 -DNOB_200 \
37 -DNOB_1800 -DNOB_3600 -DNOB_7200 -DNOB_76K -DNOB_230K \
38 -DNOB_460K -DNOB_921K \
39 -DNOCSETS -DNONET -DNOUNICODE -DNOHELP -DNODEBUG \
40 -DNOFRILLS -DNOFTP -DNODIAL -DNOPUSH -DNOIKSD -DNOHTTP -DNOFLOAT \
41 -DNOSERVER -DNOSEXP -DNORLOGIN -DNOOLDMODEMS -DNOSSH -DNOLISTEN \
42 -DNORESEND -DNOAUTODL -DNOSTREAMING -DNOHINTS -DNOCKXYZ -DNOLEARN \
43 -DNOMKDIR -DNOPERMS -DNOCKTIMERS -DNOCKREGEX -DNOREALPATH \
44 -DCK_SMALL -DNOLOGDIAL -DNORENAME -DNOWHATAMI \
45 ${CKERMIT_ADDITIONAL}"
46}
47
48do_install () {
49 install -d ${D}${BINDIR} ${D}${MANDIR} ${D}${INFODIR}
50 oe_runmake 'DESTDIR=${D}' install
51 # Fix up dangling symlink
52 rm ${D}${BINDIR}/kermit-sshsub
53 (cd ${D}${BINDIR} && ln -s ${BINDIR}/kermit kermit-sshusb)
54}
55
56SRC_URI[md5sum] = "59e80f909edf305933af8e0348dcc5d7"
57SRC_URI[sha256sum] = "9793eb125f8936b079c6d7e5c3d2ff885cfedc07f9d2dd1e7db928e3029a211a"