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_append () {
66	# Move /usr/bin/bash to /bin/bash, if need
67	if [ "${base_bindir}" != "${bindir}" ]; then
68		mkdir -p ${D}${base_bindir}
69		mv ${D}${bindir}/bash ${D}${base_bindir}
70	fi
71}
72do_install_append_class-target () {
73	# Clean buildhost references in bashbug
74	sed -i -e "s,--sysroot=${STAGING_DIR_TARGET},,g" \
75		-e "s,-I${WORKDIR}/\S* ,,g" \
76		-e 's|${DEBUG_PREFIX_MAP}||g' \
77		${D}${bindir}/bashbug
78
79	# Clean buildhost references in bash.pc
80	sed -i -e "s,--sysroot=${STAGING_DIR_TARGET},,g" \
81	     ${D}${libdir}/pkgconfig/bash.pc
82
83	# Clean buildhost references in Makefile.inc
84	sed -i -e "s,--sysroot=${STAGING_DIR_TARGET},,g" \
85		-e 's|${DEBUG_PREFIX_MAP}||g' \
86		-e 's:${HOSTTOOLS_DIR}/::g' \
87		-e 's:${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}::g' \
88		${D}${libdir}/bash/Makefile.inc
89}
90
91do_install_ptest () {
92	make INSTALL_TEST_DIR=${D}${PTEST_PATH}/tests install-test
93	cp ${B}/Makefile ${D}${PTEST_PATH}
94	cp ${B}/config.h ${D}${PTEST_PATH}
95	cp ${B}/version.h ${D}${PTEST_PATH}
96	cp ${S}/y.tab.[ch] ${D}${PTEST_PATH}
97	install -D ${WORKDIR}/run-bash-ptests ${D}${PTEST_PATH}/run-bash-ptests
98        sed -i -e 's/^Makefile/_Makefile/' -e "s,--sysroot=${STAGING_DIR_TARGET},,g" \
99	    -e 's|${DEBUG_PREFIX_MAP}||g' \
100	    -e "s,${S},,g" -e "s,${B},,g" -e "s,${STAGING_DIR_NATIVE},,g" \
101	    -e 's:${HOSTTOOLS_DIR}/::g' \
102	    -e 's:${UNINATIVE_LOADER}:${base_bindir}/false:g' \
103	     ${D}${PTEST_PATH}/Makefile
104}
105# The uninative loader is different on i386 & x86_64 hosts. Since it is only
106# being replaced with /bin/false anyway, it doesn't need to be part of the task
107# hash
108do_install_ptest[vardepsexclude] += "UNINATIVE_LOADER"
109
110pkg_postinst_${PN} () {
111	grep -q "^${base_bindir}/bash$" $D${sysconfdir}/shells || echo ${base_bindir}/bash >> $D${sysconfdir}/shells
112}
113
114pkg_postrm_${PN} () {
115	printf "$(grep -v "^${base_bindir}/bash$" $D${sysconfdir}/shells)\n" > $D${sysconfdir}/shells
116}
117
118PACKAGES += "${PN}-bashbug"
119FILES_${PN} = "${bindir}/bash ${base_bindir}/bash.bash"
120FILES_${PN}-bashbug = "${bindir}/bashbug"
121
122PACKAGE_BEFORE_PN += "${PN}-loadable"
123RDEPENDS_${PN}-loadable += "${PN}"
124FILES_${PN}-loadable += "${libdir}/bash/*"
125
126RPROVIDES_${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'usrmerge', '/bin/sh /bin/bash', '', d)}"
127