changeset 5403:02f34eeb52f9

ncurses: depend on gawk.
author Jan Nieuwenhuizen <janneke@gnu.org>
date Fri, 24 Jul 2009 13:55:32 +0200
parents a740b4212470
children 7a19ab8eeda0
files gub/specs/ncurses.py
diffstat 1 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gub/specs/ncurses.py	Fri Jul 24 13:55:20 2009 +0200
+++ b/gub/specs/ncurses.py	Fri Jul 24 13:55:32 2009 +0200
@@ -3,6 +3,11 @@
 
 class Ncurses (target.AutoBuild):
     source = 'ftp://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.5.tar.gz'
+    def _get_build_dependencies (self):
+        return [
+#            'system::g++'
+            'tools::gawk',
+            ]
     def configure_command (self):
         return (target.AutoBuild.configure_command (self)
                 + ' --without-normal'
@@ -17,11 +22,12 @@
                 + ' --with-normal'
                 + ' --with-shared'
                 + ' --without-cxx'
-                + ' --without--cxx-binding'
+                + ' --without-cxx-binding'
                 )
     def _get_build_dependencies (self):
         return [
 #            'system::g++'
+            'gawk',
             ]
     def license_files (self):
         return ['%(srcdir)s/README']