2008-10-14 16:41:37 +00:00
|
|
|
# Template build file for 'bash'.
|
|
|
|
pkgname=bash
|
2014-02-27 06:14:13 +00:00
|
|
|
_bash_distver=4.3
|
|
|
|
_bash_patchlevel=000
|
2011-03-03 12:23:02 +00:00
|
|
|
version=${_bash_distver}.${_bash_patchlevel}
|
2014-03-15 08:02:52 +00:00
|
|
|
revision=3
|
2010-05-17 22:41:57 +00:00
|
|
|
wrksrc=${pkgname}-${_bash_distver}
|
2011-10-24 12:14:47 +00:00
|
|
|
build_style=gnu-configure
|
2014-03-15 08:02:52 +00:00
|
|
|
configure_args="--without-bash-malloc --with-curses --with-installed-readline"
|
2013-03-24 09:21:58 +00:00
|
|
|
hostmakedepends="bison"
|
2014-03-15 08:02:52 +00:00
|
|
|
makedepends="ncurses-devel readline-devel>=6.3"
|
2014-01-01 15:10:11 +00:00
|
|
|
conflicts="chroot-bash>=0"
|
|
|
|
register_shell="/bin/bash"
|
2008-10-14 16:41:37 +00:00
|
|
|
short_desc="The GNU Bourne Again Shell"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-05-31 07:36:43 +00:00
|
|
|
homepage="http://www.gnu.org/software/bash/bash.html"
|
|
|
|
license="GPL-3"
|
2012-07-09 15:12:59 +00:00
|
|
|
distfiles="http://ftp.gnu.org/gnu/bash/bash-${_bash_distver}.tar.gz"
|
2014-02-27 06:14:13 +00:00
|
|
|
checksum=afc687a28e0e24dc21b988fa159ff9dbcf6b7caa92ade8645cc6d5605cd024d4
|
2008-10-22 00:43:51 +00:00
|
|
|
|
2012-02-28 09:21:44 +00:00
|
|
|
pre_configure() {
|
2010-05-17 22:41:57 +00:00
|
|
|
local url="http://ftp.gnu.org/gnu/bash/bash-${_bash_distver}-patches"
|
2011-03-03 12:23:02 +00:00
|
|
|
local ver=$(echo ${_bash_distver}|sed "s|\.||g")
|
2009-10-17 01:16:09 +00:00
|
|
|
|
2010-05-17 22:41:57 +00:00
|
|
|
if [ "${_bash_patchlevel}" -gt 000 ]; then
|
2009-12-13 12:42:11 +00:00
|
|
|
cd ${XBPS_SRCDISTDIR} || return 1
|
2010-05-17 22:41:57 +00:00
|
|
|
for p in $(seq -w 001 ${_bash_patchlevel}); do
|
2011-03-03 12:23:02 +00:00
|
|
|
[ -f ${XBPS_SRCDISTDIR}/bash${ver}-${p} ] && continue
|
|
|
|
msg_normal " Fetching ${url}/bash${ver}-$p ...\n"
|
|
|
|
$XBPS_FETCH_CMD ${url}/bash${ver}-$p
|
2009-08-02 14:06:53 +00:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
cd ${wrksrc}
|
2010-05-17 22:41:57 +00:00
|
|
|
for p in $(seq -w 001 ${_bash_patchlevel}); do
|
2011-03-03 12:23:02 +00:00
|
|
|
patch -s -Np0 -i ${XBPS_SRCDISTDIR}/bash${ver}-${p} && \
|
|
|
|
msg_normal " Applying patch bash${ver}-$p.\n"
|
2009-08-02 14:06:53 +00:00
|
|
|
done
|
|
|
|
}
|