missing
上传用户:shtangtang
上传日期:2007-01-04
资源大小:167k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #! /bin/sh
  2. # Common stub for a few missing GNU programs while installing.
  3. # Copyright (C) 1996, 1997 Free Software Foundation, Inc.
  4. # Franc,ois Pinard <pinard@iro.umontreal.ca>, 1996.
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2, or (at your option)
  8. # any later version.
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13. # You should have received a copy of the GNU General Public License
  14. # along with this program; if not, write to the Free Software
  15. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  16. # 02111-1307, USA.
  17. if test $# -eq 0; then
  18.   echo 1>&2 "Try `$0 --help' for more information"
  19.   exit 1
  20. fi
  21. case "$1" in
  22.   -h|--h|--he|--hel|--help)
  23.     echo "
  24. $0 [OPTION]... PROGRAM [ARGUMENT]...
  25. Handle `PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an
  26. error status if there is no known handling for PROGRAM.
  27. Options:
  28.   -h, --help      display this help and exit
  29.   -v, --version   output version information and exit
  30. Supported PROGRAM values:
  31.   aclocal      touch file `aclocal.m4'
  32.   autoconf     touch file `configure'
  33.   autoheader   touch file `config.h.in'
  34.   automake     touch all `Makefile.in' files
  35.   bison        create `y.tab.[ch]', if possible, from existing .[ch]
  36.   flex         create `lex.yy.c', if possible, from existing .c
  37.   lex          create `lex.yy.c', if possible, from existing .c
  38.   makeinfo     touch the output file
  39.   yacc         create `y.tab.[ch]', if possible, from existing .[ch]"
  40.     ;;
  41.   -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
  42.     echo "missing - GNU libit 0.0"
  43.     ;;
  44.   -*)
  45.     echo 1>&2 "$0: Unknown `$1' option"
  46.     echo 1>&2 "Try `$0 --help' for more information"
  47.     exit 1
  48.     ;;
  49.   aclocal)
  50.     echo 1>&2 "
  51. WARNING: `$1' is missing on your system.  You should only need it if
  52.          you modified `acinclude.m4' or `configure.in'.  You might want
  53.          to install the `Automake' and `Perl' packages.  Grab them from
  54.          any GNU archive site."
  55.     touch aclocal.m4
  56.     ;;
  57.   autoconf)
  58.     echo 1>&2 "
  59. WARNING: `$1' is missing on your system.  You should only need it if
  60.          you modified `configure.in'.  You might want to install the
  61.          `Autoconf' and `GNU m4' packages.  Grab them from any GNU
  62.          archive site."
  63.     touch configure
  64.     ;;
  65.   autoheader)
  66.     echo 1>&2 "
  67. WARNING: `$1' is missing on your system.  You should only need it if
  68.          you modified `acconfig.h' or `configure.in'.  You might want
  69.          to install the `Autoconf' and `GNU m4' packages.  Grab them
  70.          from any GNU archive site."
  71.     files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER([^):]*:([^)]*)).*/1/p' configure.in`
  72.     if test -z "$files"; then
  73.       files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(([^):]*)).*/1/p' configure.in`
  74.       test -z "$files" || files="$files.in"
  75.     else
  76.       files=`echo "$files" | sed -e 's/:/ /g'`
  77.     fi
  78.     test -z "$files" && files="config.h.in"
  79.     touch $files
  80.     ;;
  81.   automake)
  82.     echo 1>&2 "
  83. WARNING: `$1' is missing on your system.  You should only need it if
  84.          you modified `Makefile.am', `acinclude.m4' or `configure.in'.
  85.          You might want to install the `Automake' and `Perl' packages.
  86.          Grab them from any GNU archive site."
  87.     find . -type f -name Makefile.am -print 
  88.       | sed 's/^(.*).am$/touch 1.in/' 
  89.       | sh
  90.     ;;
  91.   bison|yacc)
  92.     echo 1>&2 "
  93. WARNING: `$1' is missing on your system.  You should only need it if
  94.          you modified a `.y' file.  You may need the `Bison' package
  95.          in order for those modifications to take effect.  You can get
  96.          `Bison' from any GNU archive site."
  97.     rm -f y.tab.c y.tab.h
  98.     if [ $# -ne 1 ]; then
  99.         eval LASTARG="${$#}"
  100. case "$LASTARG" in
  101. *.y)
  102.     SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
  103.     if [ -f "$SRCFILE" ]; then
  104.          cp "$SRCFILE" y.tab.c
  105.     fi
  106.     SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
  107.     if [ -f "$SRCFILE" ]; then
  108.          cp "$SRCFILE" y.tab.h
  109.     fi
  110.   ;;
  111. esac
  112.     fi
  113.     if [ ! -f y.tab.h ]; then
  114. echo >y.tab.h
  115.     fi
  116.     if [ ! -f y.tab.c ]; then
  117. echo 'main() { return 0; }' >y.tab.c
  118.     fi
  119.     ;;
  120.   lex|flex)
  121.     echo 1>&2 "
  122. WARNING: `$1' is missing on your system.  You should only need it if
  123.          you modified a `.l' file.  You may need the `Flex' package
  124.          in order for those modifications to take effect.  You can get
  125.          `Flex' from any GNU archive site."
  126.     rm -f lex.yy.c
  127.     if [ $# -ne 1 ]; then
  128.         eval LASTARG="${$#}"
  129. case "$LASTARG" in
  130. *.l)
  131.     SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
  132.     if [ -f "$SRCFILE" ]; then
  133.          cp "$SRCFILE" lex.yy.c
  134.     fi
  135.   ;;
  136. esac
  137.     fi
  138.     if [ ! -f lex.yy.c ]; then
  139. echo 'main() { return 0; }' >lex.yy.c
  140.     fi
  141.     ;;
  142.   makeinfo)
  143.     echo 1>&2 "
  144. WARNING: `$1' is missing on your system.  You should only need it if
  145.          you modified a `.texi' or `.texinfo' file, or any other file
  146.          indirectly affecting the aspect of the manual.  The spurious
  147.          call might also be the consequence of using a buggy `make' (AIX,
  148.          DU, IRIX).  You might want to install the `Texinfo' package or
  149.          the `GNU make' package.  Grab either from any GNU archive site."
  150.     file=`echo "$*" | sed -n 's/.*-o ([^ ]*).*/1/p'`
  151.     if test -z "$file"; then
  152.       file=`echo "$*" | sed 's/.* ([^ ]*) *$/1/'`
  153.       file=`sed -n '/^@setfilename/ { s/.* ([^ ]*) *$/1/; p; q; }' $file`
  154.     fi
  155.     touch $file
  156.     ;;
  157.   *)
  158.     echo 1>&2 "
  159. WARNING: `$1' is needed, and you do not seem to have it handy on your
  160.          system.  You might have modified some files without having the
  161.          proper tools for further handling them.  Check the `README' file,
  162.          it often tells you about the needed prerequirements for installing
  163.          this package.  You may also peek at any GNU archive site, in case
  164.          some other package would contain this missing `$1' program."
  165.     exit 1
  166.     ;;
  167. esac
  168. exit 0