1DESCRIPTION = "TENEX C Shell, an enhanced version of Berkeley csh \ 2 The TENEX C Shell is an enhanced version of the Berkeley Unix C shell. \ 3 It includes all features of 4.4BSD C shell, plus a command-line editor, \ 4 programmable word completion, spelling correction and more." 5 6HOMEPAGE = "http://www.tcsh.org/" 7LICENSE = "BSD-3-Clause" 8LIC_FILES_CHKSUM = "file://Copyright;md5=575cf2715c3bf894e1f79aec1d4eaaf5" 9SECTION = "base" 10DEPENDS = "ncurses virtual/crypt gettext-native" 11SRC_URI = " \ 12 https://astron.com/pub/${BPN}/${BP}.tar.gz \ 13 file://0001-Enable-system-malloc-on-all-linux.patch \ 14 file://0002-Add-debian-csh-scripts.patch \ 15" 16SRC_URI[md5sum] = "fa2b347fa9ae866eb036e6e4bb85fe1a" 17SRC_URI[sha256sum] = "eb16356243218c32f39e07258d72bf8b21e62ce94bb0e8a95e318b151397e231" 18 19EXTRA_OEMAKE += "CC_FOR_GETHOST='${BUILD_CC}'" 20inherit autotools 21 22do_compile:prepend() { 23 oe_runmake CC_FOR_GETHOST='${BUILD_CC}' CFLAGS='${BUILD_CFLAGS}' LDFLAGS='${BUILD_LDFLAGS}' gethost 24} 25 26do_install:append () { 27 oe_runmake install.man DESTDIR=${D} 28 29 install -d ${D}${base_bindir} 30 if ! ${@bb.utils.contains('DISTRO_FEATURES','usrmerge','true','false',d)}; then 31 ln -s /usr/bin/tcsh ${D}${base_bindir}/tcsh 32 ln -s /usr/bin/tcsh ${D}${base_bindir}/csh 33 fi 34 install -d ${D}${sysconfdir}/csh/login.d 35 install -m 0644 ${S}/csh.cshrc ${S}/csh.login ${S}/csh.logout ${S}/complete.tcsh ${D}${sysconfdir} 36 install -D -m 0644 ${S}/csh-mode.el ${D}${datadir}/emacs/site-lisp/csh-mode.el 37} 38 39FILES:${PN} += "${datadir}/emacs/site-lisp/csh-mode.el" 40 41 42pkg_postinst:${PN} () { 43#!/bin/sh -e 44echo /usr/bin/tcsh >> $D/etc/shells 45echo /usr/bin/csh >> $D/etc/shells 46} 47