summaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-10-20 22:56:34 +0000
committerChris Larson <clarson@kergoth.com>2003-10-20 22:56:34 +0000
commita23565c054906e316011ec06259f43e067d7a69a (patch)
tree1686a539e16312e3db637876559aaebb0ba76f33 /zsh
parentf1252666438187c9a1c84107c499f73ee2f80f51 (diff)
Move some nonbuilding items into nonworking.. fix the libpcap, openssh, nano builds that were failing due to 1) aclocal.m4 being the only place containing their macros, and 2) _au_changequote() refs that are never removed by autoconf.
BKrev: 3f946822OUfB3oA0KwkHGEFd0cEV1Q
Diffstat (limited to 'zsh')
-rw-r--r--zsh/zsh_4.1.1.oe18
1 files changed, 18 insertions, 0 deletions
diff --git a/zsh/zsh_4.1.1.oe b/zsh/zsh_4.1.1.oe
index e69de29bb2..91869b3caa 100644
--- a/zsh/zsh_4.1.1.oe
+++ b/zsh/zsh_4.1.1.oe
@@ -0,0 +1,18 @@
+DESCRIPTION="Zsh shell"
+SECTION="base"
+PRIORITY="optional"
+MAINTAINER="Chris Larson <kergoth@handhelds.org>"
+RDEPENDS="libc6"
+DEPENDS=virtual/libc ncurses pcre
+
+SRC_URI="http://www.zsh.org/pub/${P}.tar.bz2"
+S="${WORKDIR}/${P}"
+
+inherit autotools
+
+EXTRA_OECONF = "--with-curses-terminfo"
+do_configure_prepend () {
+ if [ ! -e acinclude.m4 ]; then
+ cat aczsh.m4 > acinclude.m4
+ fi
+}