summaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-10-17 00:04:36 +0000
committerChris Larson <clarson@kergoth.com>2003-10-17 00:04:36 +0000
commit88ca5e7b8d117bdceef3516d15a5e5b0b4b75eaf (patch)
tree9e685fd22294440eb759c1e734c682a1ab8225ac /bash
parent89f514b9d243fe551466eae22a72e482a2c99541 (diff)
First pass at patches to update various packages to recent autotools (first pass is 'autoupdate' only).
BKrev: 3f8f3214lGQ4WxIZ_n6VvkJ1pfUjcQ
Diffstat (limited to 'bash')
-rw-r--r--bash/bash-2.05b/configure.patch0
-rw-r--r--bash/bash_2.05b.oe22
2 files changed, 22 insertions, 0 deletions
diff --git a/bash/bash-2.05b/configure.patch b/bash/bash-2.05b/configure.patch
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/bash/bash-2.05b/configure.patch
diff --git a/bash/bash_2.05b.oe b/bash/bash_2.05b.oe
index e69de29bb2..cb716d37ff 100644
--- a/bash/bash_2.05b.oe
+++ b/bash/bash_2.05b.oe
@@ -0,0 +1,22 @@
+DEPENDS = virtual/libc ncurses
+RDEPENDS = libc6 libncurses5
+
+SRC_URI = ${GNU_MIRROR}/bash/bash-2.05b.tar.gz \
+ file://${FILESDIR}/make.patch;patch=1 \
+ file://${FILESDIR}/configure.patch;patch=1
+
+inherit autotools
+
+EXTRA_OECONF = --with-curses
+BUILD_CPPFLAGS_append = " -I${S} -I${S}/include"
+BUILD_CFLAGS_append = " -I${S} -I${S}/include"
+export CFLAGS_FOR_BUILD=${BUILD_CFLAGS}
+export CPPFLAGS_FOR_BUILD=${BUILD_CPPFLAGS}
+export LDFLAGS_FOR_BUILD=${BUILD_LDFLAGS}
+export CC_FOR_BUILD=${BUILD_CC}
+do_configure_prepend () {
+ if [ ! -e acinclude.m4 ]; then
+ mv aclocal.m4 acinclude.m4
+ fi
+ support/mkconffiles
+}