1SUMMARY = "An sh-compatible command language interpreter" 2HOMEPAGE = "http://tiswww.case.edu/php/chet/bash/bashtop.html" 3DESCRIPTION = "Bash is the GNU Project's Bourne Again SHell, a complete implementation of the IEEE POSIX and Open Group shell specification with interactive command line editing, job control on architectures that support it, csh-like features such as history substitution and brace expansion, and a slew of other features." 4SECTION = "base/shell" 5 6DEPENDS = "ncurses bison-native virtual/libiconv" 7 8inherit autotools gettext texinfo update-alternatives ptest 9 10EXTRA_AUTORECONF += "--exclude=autoheader" 11EXTRA_OECONF = "--enable-job-control --without-bash-malloc bash_cv_wexitstatus_offset=8" 12 13# If NON_INTERACTIVE_LOGIN_SHELLS is defined, all login shells read the 14# startup files, even if they are not interactive. 15# This is what other major distros do. And this is what we wanted. See bug#5359 and bug#7137. 16CFLAGS += "-DNON_INTERACTIVE_LOGIN_SHELLS" 17 18# This can vary depending upon the host 19CFLAGS += "-DHEREDOC_PIPESIZE=65536" 20 21# Disable bracketed paste mode by default (enabled by default in bash 5.1). It 22# causes a lot of garbage in non-interactive shells 23CFLAGS += "-DBRACKETED_PASTE_DEFAULT=0" 24 25ALTERNATIVE:${PN} = "bash sh" 26ALTERNATIVE_LINK_NAME[bash] = "${base_bindir}/bash" 27ALTERNATIVE_TARGET[bash] = "${base_bindir}/bash" 28ALTERNATIVE_LINK_NAME[sh] = "${base_bindir}/sh" 29ALTERNATIVE_TARGET[sh] = "${base_bindir}/bash.${BPN}" 30ALTERNATIVE_PRIORITY = "100" 31 32RDEPENDS:${PN} += "base-files" 33RDEPENDS:${PN}:class-nativesdk = "" 34RDEPENDS:${PN}-ptest += "make coreutils perl sed shadow util-linux-setpriv" 35 36RDEPENDS:${PN}-ptest:append:libc-glibc = " \ 37 glibc-gconv-big5hkscs \ 38 glibc-gconv-iso8859-1 \ 39 glibc-utils \ 40 locale-base-de-de \ 41 locale-base-en-us \ 42 locale-base-fr-fr \ 43 locale-base-fr-fr.iso-8859-1 \ 44 locale-base-zh-hk.big5-hkscs \ 45 " 46 47CACHED_CONFIGUREVARS += "headersdir=${includedir}/${PN}" 48 49do_configure:prepend () { 50 if [ ! -e ${S}/acinclude.m4 ]; then 51 cat ${S}/aclocal.m4 > ${S}/acinclude.m4 52 fi 53} 54 55do_compile:prepend() { 56 # Remove any leftover .build files. This ensures that bash always has the 57 # same version number and keeps builds reproducible 58 rm -f ${B}/.build 59} 60 61do_compile_ptest () { 62 oe_runmake buildtest 63} 64 65do_install:prepend () { 66 # Ensure determinism as this counter increases for each make call 67 rm -f ${B}/.build 68} 69 70do_install:append () { 71 # Move /usr/bin/bash to /bin/bash, if need 72 if [ "${base_bindir}" != "${bindir}" ]; then 73 mkdir -p ${D}${base_bindir} 74 mv ${D}${bindir}/bash ${D}${base_bindir} 75 fi 76} 77do_install:append:class-target () { 78 # Clean buildhost references in bashbug 79 sed -i -e "s,--sysroot=${STAGING_DIR_TARGET},,g" \ 80 -e "s,-I${WORKDIR}/\S* ,,g" \ 81 -e 's|${DEBUG_PREFIX_MAP}||g' \ 82 ${D}${bindir}/bashbug 83 84 # Clean buildhost references in bash.pc 85 sed -i -e "s,--sysroot=${STAGING_DIR_TARGET},,g" \ 86 ${D}${libdir}/pkgconfig/bash.pc 87 88 # Clean buildhost references in Makefile.inc 89 sed -i -e "s,--sysroot=${STAGING_DIR_TARGET},,g" \ 90 -e 's|${DEBUG_PREFIX_MAP}||g' \ 91 -e 's:${HOSTTOOLS_DIR}/::g' \ 92 -e 's:${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}::g' \ 93 ${D}${libdir}/bash/Makefile.inc 94} 95 96do_install_ptest () { 97 make INSTALL_TEST_DIR=${D}${PTEST_PATH}/tests install-test 98 cp ${B}/Makefile ${D}${PTEST_PATH} 99 cp ${B}/config.h ${D}${PTEST_PATH} 100 cp ${B}/version.h ${D}${PTEST_PATH} 101 cp ${S}/y.tab.[ch] ${D}${PTEST_PATH} 102 install -D ${WORKDIR}/run-bash-ptests ${D}${PTEST_PATH}/run-bash-ptests 103 sed -i -e 's/^Makefile/_Makefile/' -e "s,--sysroot=${STAGING_DIR_TARGET},,g" \ 104 -e 's|${DEBUG_PREFIX_MAP}||g' \ 105 -e "s,${S},,g" -e "s,${B},,g" -e "s,${STAGING_DIR_NATIVE},,g" \ 106 -e 's:${HOSTTOOLS_DIR}/::g' \ 107 -e 's:${UNINATIVE_LOADER}:${base_bindir}/false:g' \ 108 ${D}${PTEST_PATH}/Makefile 109} 110# The uninative loader is different on i386 & x86_64 hosts. Since it is only 111# being replaced with /bin/false anyway, it doesn't need to be part of the task 112# hash 113do_install_ptest[vardepsexclude] += "UNINATIVE_LOADER" 114 115pkg_postinst:${PN} () { 116 grep -q "^${base_bindir}/bash$" $D${sysconfdir}/shells || echo ${base_bindir}/bash >> $D${sysconfdir}/shells 117} 118 119pkg_postrm:${PN} () { 120 printf "$(grep -v "^${base_bindir}/bash$" $D${sysconfdir}/shells)\n" > $D${sysconfdir}/shells 121} 122 123PACKAGES += "${PN}-bashbug" 124FILES:${PN} = "${bindir}/bash ${base_bindir}/bash.bash" 125FILES:${PN}-bashbug = "${bindir}/bashbug" 126 127PACKAGE_BEFORE_PN += "${PN}-loadable" 128RDEPENDS:${PN}-loadable += "${PN}" 129FILES:${PN}-loadable += "${libdir}/bash/*" 130 131RPROVIDES:${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'usrmerge', '/bin/sh /bin/bash', '', d)}" 132