blob: 039b8687a240dd0595fe1d3fa205acf12a5972e6 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "An sh-compatible command language interpreter"
2HOMEPAGE = "http://tiswww.case.edu/php/chet/bash/bashtop.html"
3SECTION = "base/shell"
4
Patrick Williamsc0f7c042017-02-23 20:41:17 -06005DEPENDS = "ncurses bison-native virtual/libiconv"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006
7inherit autotools gettext texinfo update-alternatives ptest
8
Brad Bishop316dfdd2018-06-25 12:45:53 -04009EXTRA_AUTORECONF += "--exclude=autoheader --exclude=aclocal"
Brad Bishopd5ae7d92018-06-14 09:52:03 -070010EXTRA_OECONF = "--enable-job-control --without-bash-malloc bash_cv_wexitstatus_offset=8"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011
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.
15CFLAGS += "-DNON_INTERACTIVE_LOGIN_SHELLS"
16
Brad Bishop6e60e8b2018-02-01 10:27:11 -050017ALTERNATIVE_${PN} = "bash sh"
18ALTERNATIVE_LINK_NAME[bash] = "${base_bindir}/bash"
19ALTERNATIVE_TARGET[bash] = "${base_bindir}/bash"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020ALTERNATIVE_LINK_NAME[sh] = "${base_bindir}/sh"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050021ALTERNATIVE_TARGET[sh] = "${base_bindir}/bash.${BPN}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050022ALTERNATIVE_PRIORITY = "100"
23
24RDEPENDS_${PN} += "base-files"
25RDEPENDS_${PN}_class-nativesdk = ""
Brad Bishop15ae2502019-06-18 21:44:24 -040026RDEPENDS_${PN}-ptest += "make coreutils perl sed shadow util-linux-setpriv"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050027
Brad Bishop316dfdd2018-06-25 12:45:53 -040028DEPENDS_append_libc-glibc = " virtual/libc-locale"
Brad Bishop15ae2502019-06-18 21:44:24 -040029RDEPENDS_${PN}-ptest_append_libc-glibc = " \
30 glibc-gconv-big5hkscs \
31 glibc-gconv-iso8859-1 \
32 glibc-utils \
33 locale-base-de-de \
34 locale-base-en-us \
35 locale-base-fr-fr \
36 locale-base-fr-fr.iso-8859-1 \
37 locale-base-zh-hk.big5-hkscs \
38 "
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050039
Brad Bishopd7bf8c12018-02-25 22:55:05 -050040CACHED_CONFIGUREVARS += "headersdir=${includedir}/${PN}"
41
Brad Bishopc8f47122019-06-24 09:36:18 -040042do_compile_prepend() {
43 # Remove any leftover .build files. This ensures that bash always has the
44 # same version number and keeps builds reproducible
45 rm -f ${B}/.build
46}
47
Patrick Williamsc124f4f2015-09-15 14:41:29 -050048do_compile_ptest () {
49 oe_runmake buildtest
50}
51
52do_install_append () {
53 # Move /usr/bin/bash to /bin/bash, if need
54 if [ "${base_bindir}" != "${bindir}" ]; then
55 mkdir -p ${D}${base_bindir}
56 mv ${D}${bindir}/bash ${D}${base_bindir}
57 fi
58}
59do_install_append_class-target () {
Brad Bishopd7bf8c12018-02-25 22:55:05 -050060 # Clean buildhost references in bashbug
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050061 sed -i -e "s,--sysroot=${STAGING_DIR_TARGET},,g" \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050062 -e "s,-I${WORKDIR}/\S* ,,g" \
63 -e 's|${DEBUG_PREFIX_MAP}||g' \
64 ${D}${bindir}/bashbug
65
66 # Clean buildhost references in bash.pc
67 sed -i -e "s,--sysroot=${STAGING_DIR_TARGET},,g" \
68 ${D}${libdir}/pkgconfig/bash.pc
69
70 # Clean buildhost references in Makefile.inc
71 sed -i -e "s,--sysroot=${STAGING_DIR_TARGET},,g" \
72 -e 's|${DEBUG_PREFIX_MAP}||g' \
73 -e 's:${HOSTTOOLS_DIR}/::g' \
74 -e 's:${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}::g' \
75 ${D}${libdir}/bash/Makefile.inc
Patrick Williamsc124f4f2015-09-15 14:41:29 -050076}
77
78do_install_ptest () {
79 make INSTALL_TEST_DIR=${D}${PTEST_PATH}/tests install-test
80 cp ${B}/Makefile ${D}${PTEST_PATH}
Brad Bishop15ae2502019-06-18 21:44:24 -040081 install -D ${WORKDIR}/run-bash-ptests ${D}${PTEST_PATH}/run-bash-ptests
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050082 sed -i -e 's/^Makefile/_Makefile/' -e "s,--sysroot=${STAGING_DIR_TARGET},,g" \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050083 -e 's|${DEBUG_PREFIX_MAP}||g' \
84 -e "s,${S},,g" -e "s,${B},,g" -e "s,${STAGING_DIR_NATIVE},,g" \
85 -e 's:${HOSTTOOLS_DIR}/::g' \
Brad Bishop15ae2502019-06-18 21:44:24 -040086 -e 's:${UNINATIVE_LOADER}:${base_bindir}/false:g' \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050087 ${D}${PTEST_PATH}/Makefile
Patrick Williamsc124f4f2015-09-15 14:41:29 -050088}
Brad Bishop15ae2502019-06-18 21:44:24 -040089# The uninative loader is different on i386 & x86_64 hosts. Since it is only
90# being replaced with /bin/false anyway, it doesn't need to be part of the task
91# hash
92do_install_ptest[vardepsexclude] += "UNINATIVE_LOADER"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050093
94pkg_postinst_${PN} () {
95 grep -q "^${base_bindir}/bash$" $D${sysconfdir}/shells || echo ${base_bindir}/bash >> $D${sysconfdir}/shells
96}
97
98pkg_postrm_${PN} () {
99 printf "$(grep -v "^${base_bindir}/bash$" $D${sysconfdir}/shells)\n" > $D${sysconfdir}/shells
100}
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500101
102PACKAGES += "${PN}-bashbug"
103FILES_${PN} = "${bindir}/bash ${base_bindir}/bash.bash"
104FILES_${PN}-bashbug = "${bindir}/bashbug"
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500105
106PACKAGE_BEFORE_PN += "${PN}-loadable"
107RDEPENDS_${PN}-loadable += "${PN}"
108FILES_${PN}-loadable += "${libdir}/bash/*"
109
110RPROVIDES_${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'usrmerge', '/bin/sh /bin/bash', '', d)}"