41429
+ ��膩��� 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
+ ��膩��� 6 # This program is free software; you can redistribute it and/or modify
+ ��膩��� 7 # it under the terms of the GNU General Public License as published by
+ ��膩��� 8 # the Free Software Foundation; either version 2, or (at your option)
+ ��膩��� 9 # any later version.
+ ��膩��� 10
+ ��膩��� 11 # This program is distributed in the hope that it will be useful,
+ ��膩��� 12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ��膩��� 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ ��膩��� 14 # GNU General Public License for more details.
+ ��膩��� 15
+ ��膩��� 16 # You should have received a copy of the GNU General Public License
+ ��膩��� 17 # along with this program; if not, write to the Free Software
64092
+ ��膩��� 18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ ��膩��� 19 # MA 02110-1301, USA.
41429
+ ��膩��� 20
+ ��膩��� 21 if test $# -eq 0; then
+ ��膩��� 22 echo 1>&2 "Try \`$0 --help' for more information"
+ ��膩��� 23 exit 1
+ ��膩��� 24 fi
+ ��膩��� 25
+ ��膩��� 26 case "$1" in
+ ��膩��� 27
+ ��膩��� 28 -h|--h|--he|--hel|--help)
+ ��膩��� 29 echo "\
+ ��膩��� 30 $0 [OPTION]... PROGRAM [ARGUMENT]...
+ ��膩��� 31
+ ��膩��� 32 Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an
+ ��膩��� 33 error status if there is no known handling for PROGRAM.
+ ��膩��� 34
+ ��膩��� 35 Options:
+ ��膩��� 36 -h, --help display this help and exit
+ ��膩��� 37 -v, --version output version information and exit
+ ��膩��� 38
+ ��膩��� 39 Supported PROGRAM values:
+ ��膩��� 40 aclocal touch file \`aclocal.m4'
+ ��膩��� 41 autoconf touch file \`configure'
+ ��膩��� 42 autoheader touch file \`config.h.in'
+ ��膩��� 43 automake touch all \`Makefile.in' files
+ ��膩��� 44 bison touch file \`y.tab.c'
+ ��膩��� 45 makeinfo touch the output file
+ ��膩��� 46 yacc touch file \`y.tab.c'"
+ ��膩��� 47 ;;
+ ��膩��� 48
+ ��膩��� 49 -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
+ ��膩��� 50 echo "missing - GNU libit 0.0"
+ ��膩��� 51 ;;
+ ��膩��� 52
+ ��膩��� 53 -*)
+ ��膩��� 54 echo 1>&2 "$0: Unknown \`$1' option"
+ ��膩��� 55 echo 1>&2 "Try \`$0 --help' for more information"
+ ��膩��� 56 exit 1
+ ��膩��� 57 ;;
+ ��膩��� 58
+ ��膩��� 59 aclocal)
+ ��膩��� 60 echo 1>&2 "\
+ ��膩��� 61 WARNING: \`$1' is missing on your system. You should only need it if
+ ��膩��� 62 you modified \`acinclude.m4' or \`configure.in'. You might want
+ ��膩��� 63 to install the \`Automake' and \`Perl' packages. Grab them from
+ ��膩��� 64 any GNU archive site."
+ ��膩��� 65 touch aclocal.m4
+ ��膩��� 66 ;;
+ ��膩��� 67
+ ��膩��� 68 autoconf)
+ ��膩��� 69 echo 1>&2 "\
+ ��膩��� 70 WARNING: \`$1' is missing on your system. You should only need it if
+ ��膩��� 71 you modified \`configure.in'. You might want to install the
+ ��膩��� 72 \`Autoconf' and \`GNU m4' packages. Grab them from any GNU
+ ��膩��� 73 archive site."
+ ��膩��� 74 touch configure
+ ��膩��� 75 ;;
+ ��膩��� 76
+ ��膩��� 77 autoheader)
+ ��膩��� 78 echo 1>&2 "\
+ ��膩��� 79 WARNING: \`$1' is missing on your system. You should only need it if
+ ��膩��� 80 you modified \`acconfig.h' or \`configure.in'. You might want
+ ��膩��� 81 to install the \`Autoconf' and \`GNU m4' packages. Grab them
+ ��膩��� 82 from any GNU archive site."
+ ��膩��� 83 touch config.h.in
+ ��膩��� 84 ;;
+ ��膩��� 85
+ ��膩��� 86 automake)
+ ��膩��� 87 echo 1>&2 "\
+ ��膩��� 88 WARNING: \`$1' is missing on your system. You should only need it if
+ ��膩��� 89 you modified \`Makefile.am', \`acinclude.m4' or \`configure.in'.
+ ��膩��� 90 You might want to install the \`Automake' and \`Perl' packages.
+ ��膩��� 91 Grab them from any GNU archive site."
+ ��膩��� 92 find . -type f -name Makefile.am -print \
+ ��膩��� 93 | sed 's/^\(.*\).am$/touch \1.in/' \
+ ��膩��� 94 | sh
+ ��膩��� 95 ;;
+ ��膩��� 96
+ ��膩��� 97 bison|yacc)
+ ��膩��� 98 echo 1>&2 "\
+ ��膩��� 99 WARNING: \`$1' is missing on your system. You should only need it if
+ ��膩��� 100 you modified a \`.y' file. You may need the \`Bison' package
+ ��膩��� 101 in order for those modifications to take effect. You can get
+ ��膩��� 102 \`Bison' from any GNU archive site."
+ ��膩��� 103 touch y.tab.c
+ ��膩��� 104 ;;
+ ��膩��� 105
+ ��膩��� 106 makeinfo)
+ ��膩��� 107 echo 1>&2 "\
+ ��膩��� 108 WARNING: \`$1' is missing on your system. You should only need it if
+ ��膩��� 109 you modified a \`.texi' or \`.texinfo' file, or any other file
+ ��膩��� 110 indirectly affecting the aspect of the manual. The spurious
+ ��膩��� 111 call might also be the consequence of using a buggy \`make' (AIX,
+ ��膩��� 112 DU, IRIX). You might want to install the \`Texinfo' package or
+ ��膩��� 113 the \`GNU make' package. Grab either from any GNU archive site."
+ ��膩��� 114 file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
+ ��膩��� 115 if test -z "$file"; then
+ ��膩��� 116 file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
+ ��膩��� 117 file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file`
+ ��膩��� 118 fi
+ ��膩��� 119 touch $file
+ ��膩��� 120 ;;
+ ��膩��� 121
+ ��膩��� 122 *)
+ ��膩��� 123 echo 1>&2 "\
+ ��膩��� 124 WARNING: \`$1' is needed, and you do not seem to have it handy on your
+ ��膩��� 125 system. You might have modified some files without having the
+ ��膩��� 126 proper tools for further handling them. Check the \`README' file,
+ ��膩��� 127 it often tells you about the needed prerequirements for installing
+ ��膩��� 128 this package. You may also peek at any GNU archive site, in case
+ ��膩��� 129 some other package would contain this missing \`$1' program."
+ ��膩��� 130 exit 1
+ ��膩��� 131 ;;
+ ��膩��� 132 esac
+ ��膩��� 133
+ ��膩��� 134 exit 0