2008-10-14 18:41:37 +02:00
|
|
|
# Template build file for 'bash'.
|
|
|
|
pkgname=bash
|
2009-08-02 16:06:53 +02:00
|
|
|
bash_patchlevel=028
|
|
|
|
bash_distver=4.0
|
|
|
|
version=${bash_distver}.${bash_patchlevel}
|
|
|
|
wrksrc=${pkgname}-${bash_distver}
|
|
|
|
distfiles="http://ftp.gnu.org/gnu/bash/bash-${bash_distver}.tar.gz"
|
2008-10-14 18:41:37 +02:00
|
|
|
build_style=gnu_configure
|
2009-03-18 10:02:43 +01:00
|
|
|
configure_args="--without-bash-malloc --with-curses --bindir=/bin
|
2009-03-15 18:04:01 +01: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
|
|
|
|
--enable-select --enable-net-redirections --enable-restricted
|
2008-12-20 09:23:30 +01:00
|
|
|
ac_cv_func_working_mktime=yes"
|
2008-10-14 18:41:37 +02:00
|
|
|
short_desc="The GNU Bourne Again Shell"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2009-02-24 07:13:11 +01:00
|
|
|
checksum=9793d394f640a95030c77d5ac989724afe196921956db741bcaf141801c50518
|
2008-10-14 18:41:37 +02: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 02:43:51 +02:00
|
|
|
|
2009-06-07 08:09:46 +02:00
|
|
|
essential=yes
|
2008-10-27 06:12:30 +01:00
|
|
|
base_chroot=yes
|
2009-03-14 07:32:48 +01:00
|
|
|
register_shell="/bin/bash"
|
2009-02-24 07:13:11 +01:00
|
|
|
|
2009-03-15 18:04:01 +01:00
|
|
|
Add_dependency full glibc
|
|
|
|
Add_dependency build ncurses
|
2009-03-18 10:02:43 +01:00
|
|
|
Add_dependency build texinfo
|
2009-03-15 18:04:01 +01:00
|
|
|
Add_dependency run ncurses-libs
|
2009-04-25 03:45:52 +02:00
|
|
|
Add_dependency run coreutils
|
2009-08-02 16:06:53 +02:00
|
|
|
|
|
|
|
pre_configure()
|
|
|
|
{
|
|
|
|
if [ "${bash_patchlevel}" -gt 000 ]; then
|
|
|
|
for p in $(seq -w 001 ${bash_patchlevel}); do
|
|
|
|
[ -f ${XBPS_SRCDISTDIR}/bash40-${p} ] && continue
|
|
|
|
wget http://ftp.gnu.org/gnu/bash/bash-4.0-patches/bash40-$p
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
cd ${wrksrc}
|
|
|
|
for p in $(seq -w 001 ${bash_patchlevel}); do
|
|
|
|
patch -s -Np0 -i ${XBPS_SRCDISTDIR}/bash40-${p} && \
|
|
|
|
msg_normal "Applying patch bash40-$p."
|
|
|
|
done
|
|
|
|
}
|