summaryrefslogtreecommitdiff
path: root/content/zsh-4.1.1.oe
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-09-16 20:39:43 +0000
committerChris Larson <clarson@kergoth.com>2003-09-16 20:39:43 +0000
commit1369211ac6cdee1ab8aa64c0020a5d52f8540c39 (patch)
treec9aa37f13989b720619d3de4bd961203b4116fd1 /content/zsh-4.1.1.oe
parentd3aa25dd28cb8ae476872f38abf60333712c9cc7 (diff)
Updates to .oe's to utilize the autotools oeclass, and removal of unnecessary 'set -e's now that its default.
BKrev: 3f67750f7hz7fa_5DclmHoTZT7vW3Q
Diffstat (limited to 'content/zsh-4.1.1.oe')
-rw-r--r--content/zsh-4.1.1.oe10
1 files changed, 3 insertions, 7 deletions
diff --git a/content/zsh-4.1.1.oe b/content/zsh-4.1.1.oe
index 5778214907..9194f09a18 100644
--- a/content/zsh-4.1.1.oe
+++ b/content/zsh-4.1.1.oe
@@ -3,16 +3,12 @@ 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"
-DEPENDS=virtual/libc ncurses pcre
S="${WORKDIR}/${P}"
+inherit autotools
+
EXTRA_OECONF = "--with-curses-terminfo"
-#EXTRA_OECONF = "--with-curses-terminfo --enable-libs='-lncurses'"
EXTRA_OEMAKE =
-
-do_install () {
- set -e
- oe_runmake DESTDIR=${D} install
-}