diff options
author | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
commit | 1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch) | |
tree | 0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-oe/recipes-support/ckermit | |
download | meta-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.bb | 57 |
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 @@ | |||
1 | DESCRIPTION = "C-Kermit is a combined serial and network communication \ | ||
2 | software package offering a consistent, medium-independent, \ | ||
3 | cross-platform approach to connection establishment, terminal \ | ||
4 | sessions, file transfer, character-set translation, and automation \ | ||
5 | of communication tasks." | ||
6 | HOMEPAGE = "http://www.columbia.edu/kermit/" | ||
7 | SECTION = "console/network" | ||
8 | LICENSE = "BSD-3-Clause" | ||
9 | LIC_FILES_CHKSUM = "file://COPYING.TXT;md5=932ca542d6c6cb8a59a0bcd76ab67cc3" | ||
10 | SRC_URI = "ftp://kermit.columbia.edu/kermit/archives/cku${PV}.tar.gz;subdir=${BPN}-${PV}" | ||
11 | |||
12 | export CC2 = "${CC}" | ||
13 | export BINDIR = "${bindir}" | ||
14 | export MANDIR = "${mandir}/man1" | ||
15 | export INFODIR = "${infodir}" | ||
16 | |||
17 | # Additional flags. For uclibc we add -DNOARROWKEYS which stops ckermit | ||
18 | # trying to look inside the stdio headers. | ||
19 | CKERMIT_ADDITIONAL = "" | ||
20 | CKERMIT_ADDITIONAL_libc-uclibc = "-DNOARROWKEYS" | ||
21 | |||
22 | TARGET_CC_ARCH += "${LDFLAGS}" | ||
23 | |||
24 | do_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 | |||
48 | do_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 | |||
56 | SRC_URI[md5sum] = "59e80f909edf305933af8e0348dcc5d7" | ||
57 | SRC_URI[sha256sum] = "9793eb125f8936b079c6d7e5c3d2ff885cfedc07f9d2dd1e7db928e3029a211a" | ||