Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | SUMMARY = "An sh-compatible command language interpreter" |
| 2 | HOMEPAGE = "http://tiswww.case.edu/php/chet/bash/bashtop.html" |
| 3 | SECTION = "base/shell" |
| 4 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 5 | DEPENDS = "ncurses bison-native virtual/libiconv" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 6 | |
| 7 | inherit autotools gettext texinfo update-alternatives ptest |
| 8 | |
| 9 | EXTRA_AUTORECONF += "--exclude=autoheader" |
Patrick Williams | f1e5d69 | 2016-03-30 15:21:19 -0500 | [diff] [blame] | 10 | EXTRA_OECONF = "--enable-job-control --without-bash-malloc" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 11 | |
| 12 | # If NON_INTERACTIVE_LOGIN_SHELLS is defined, all login shells read the |
| 13 | # startup files, even if they are not interactive. |
| 14 | # This is what other major distros do. And this is what we wanted. See bug#5359 and bug#7137. |
| 15 | CFLAGS += "-DNON_INTERACTIVE_LOGIN_SHELLS" |
| 16 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 17 | ALTERNATIVE_${PN} = "bash sh" |
| 18 | ALTERNATIVE_LINK_NAME[bash] = "${base_bindir}/bash" |
| 19 | ALTERNATIVE_TARGET[bash] = "${base_bindir}/bash" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 20 | ALTERNATIVE_LINK_NAME[sh] = "${base_bindir}/sh" |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 21 | ALTERNATIVE_TARGET[sh] = "${base_bindir}/bash.${BPN}" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 22 | ALTERNATIVE_PRIORITY = "100" |
| 23 | |
| 24 | RDEPENDS_${PN} += "base-files" |
| 25 | RDEPENDS_${PN}_class-nativesdk = "" |
| 26 | RDEPENDS_${PN}-ptest += "make" |
| 27 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 28 | USERADD_PACKAGES = "${PN}-ptest" |
| 29 | USERADD_PARAM_${PN}-ptest = "--create-home --user-group test" |
| 30 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 31 | do_configure_prepend () { |
| 32 | if [ ! -e ${S}/acinclude.m4 ]; then |
| 33 | cat ${S}/aclocal.m4 > ${S}/acinclude.m4 |
| 34 | fi |
| 35 | } |
| 36 | |
| 37 | do_compile_ptest () { |
| 38 | oe_runmake buildtest |
| 39 | } |
| 40 | |
| 41 | do_install_append () { |
| 42 | # Move /usr/bin/bash to /bin/bash, if need |
| 43 | if [ "${base_bindir}" != "${bindir}" ]; then |
| 44 | mkdir -p ${D}${base_bindir} |
| 45 | mv ${D}${bindir}/bash ${D}${base_bindir} |
| 46 | fi |
| 47 | } |
| 48 | do_install_append_class-target () { |
| 49 | # Clean host path in bashbug |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 50 | sed -i -e "s,--sysroot=${STAGING_DIR_TARGET},,g" \ |
| 51 | -e "s,-I${WORKDIR}/\S* ,,g" ${D}${bindir}/bashbug |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | do_install_ptest () { |
| 55 | make INSTALL_TEST_DIR=${D}${PTEST_PATH}/tests install-test |
| 56 | cp ${B}/Makefile ${D}${PTEST_PATH} |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 57 | sed -i -e 's/^Makefile/_Makefile/' -e "s,--sysroot=${STAGING_DIR_TARGET},,g" \ |
| 58 | -e "s,${S},,g" -e "s,${B},,g" -e "s,${STAGING_DIR_NATIVE},,g" ${D}${PTEST_PATH}/Makefile |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | pkg_postinst_${PN} () { |
| 62 | grep -q "^${base_bindir}/bash$" $D${sysconfdir}/shells || echo ${base_bindir}/bash >> $D${sysconfdir}/shells |
| 63 | } |
| 64 | |
| 65 | pkg_postrm_${PN} () { |
| 66 | printf "$(grep -v "^${base_bindir}/bash$" $D${sysconfdir}/shells)\n" > $D${sysconfdir}/shells |
| 67 | } |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 68 | |
| 69 | PACKAGES += "${PN}-bashbug" |
| 70 | FILES_${PN} = "${bindir}/bash ${base_bindir}/bash.bash" |
| 71 | FILES_${PN}-bashbug = "${bindir}/bashbug" |