2008-10-14 16:41:37 +00:00
|
|
|
# Template build file for 'bash'.
|
|
|
|
pkgname=bash
|
2012-03-13 06:22:39 +00:00
|
|
|
_bash_patchlevel=024
|
2011-02-14 15:07:24 +00:00
|
|
|
_bash_distver=4.2
|
2011-03-03 12:23:02 +00:00
|
|
|
version=${_bash_distver}.${_bash_patchlevel}
|
|
|
|
#version=${_bash_distver}
|
2010-05-17 22:41:57 +00:00
|
|
|
wrksrc=${pkgname}-${_bash_distver}
|
|
|
|
distfiles="http://ftp.gnu.org/gnu/bash/bash-${_bash_distver}.tar.gz"
|
2011-10-24 12:14:47 +00:00
|
|
|
build_style=gnu-configure
|
2009-03-18 09:02:43 +00:00
|
|
|
configure_args="--without-bash-malloc --with-curses --bindir=/bin
|
2011-11-24 06:56:13 +00:00
|
|
|
--enable-array-variables --enable-brace-expansion --enable-casemod-attributes
|
|
|
|
--enable-casemod-expansions --enable-command-timing --enable-cond-command
|
|
|
|
--enable-cond-regexp --enable-coprocesses --enable-debugger
|
|
|
|
--enable-directory-stack --enable-dparen-arithmetic --enable-extended-glob
|
|
|
|
--enable-help-builtin --enable-history --enable-job-control --enable-multibyte
|
|
|
|
--enable-process-substitution --enable-progcomp --enable-prompt-string-decoding
|
2012-03-08 23:03:09 +00:00
|
|
|
--enable-select --enable-net-redirections --enable-restricted --enable-readline
|
|
|
|
--with-installed-readline"
|
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"
|
2011-02-14 15:07:24 +00:00
|
|
|
checksum=a27a1179ec9c0830c65c6aa5d7dab60f7ce1a2a608618570f96bfa72e95ab3d8
|
2008-10-14 16:41:37 +00:00
|
|
|
long_desc="
|
|
|
|
Bash is an sh-compatible shell that incorporates useful features from
|
|
|
|
the Korn shell (ksh) and C shell (csh). It is intended to conform to
|
|
|
|
the IEEE POSIX P1003.2/ISO 9945.2 Shell and Tools standard.
|
|
|
|
|
|
|
|
It offers functional improvements over sh for both programming and
|
|
|
|
interactive use; these include command line editing, unlimited size
|
|
|
|
command history, job control, shell functions and aliases, indexed
|
|
|
|
arrays of unlimited size, and integer arithmetic in any base from two
|
|
|
|
to sixty-four. In addition, most sh scripts can be run by Bash without
|
|
|
|
modification."
|
2008-10-22 00:43:51 +00:00
|
|
|
|
2009-03-14 06:32:48 +00:00
|
|
|
register_shell="/bin/bash"
|
2009-02-24 06:13:11 +00:00
|
|
|
|
2012-03-08 23:03:09 +00:00
|
|
|
Add_dependency build readline-devel
|
2010-11-03 00:09:23 +00:00
|
|
|
Add_dependency build ncurses-devel
|
2012-02-28 09:21:44 +00:00
|
|
|
Add_dependency build bison
|
2009-08-02 14:06:53 +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
|
|
|
|
}
|