source: vendor/grep/2.5.1a/missing@ 2618

Last change on this file since 2618 was 2557, checked in by bird, 20 years ago

grep 2.5.1a

File size: 8.6 KB
Line 
1#! /bin/sh
2# Common stub for a few missing GNU programs while installing.
3# Copyright 1996, 1997, 1999, 2000 Free Software Foundation, Inc.
4# Originally by Fran,cois Pinard <[email protected]>, 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
18# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19# 02111-1307, USA.
20
21# As a special exception to the GNU General Public License, if you
22# distribute this file as part of a program that contains a
23# configuration script generated by Autoconf, you may include it under
24# the same distribution terms that you use for the rest of that program.
25
26if test $# -eq 0; then
27 echo 1>&2 "Try \`$0 --help' for more information"
28 exit 1
29fi
30
31run=:
32
33# In the cases where this matters, `missing' is being run in the
34# srcdir already.
35if test -f configure.ac; then
36 configure_ac=configure.ac
37else
38 configure_ac=configure.in
39fi
40
41case "$1" in
42--run)
43 # Try to run requested program, and just exit if it succeeds.
44 run=
45 shift
46 "$@" && exit 0
47 ;;
48esac
49
50# If it does not exist, or fails to run (possibly an outdated version),
51# try to emulate it.
52case "$1" in
53
54 -h|--h|--he|--hel|--help)
55 echo "\
56$0 [OPTION]... PROGRAM [ARGUMENT]...
57
58Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an
59error status if there is no known handling for PROGRAM.
60
61Options:
62 -h, --help display this help and exit
63 -v, --version output version information and exit
64 --run try to run the given command, and emulate it if it fails
65
66Supported PROGRAM values:
67 aclocal touch file \`aclocal.m4'
68 autoconf touch file \`configure'
69 autoheader touch file \`config.h.in'
70 automake touch all \`Makefile.in' files
71 bison create \`y.tab.[ch]', if possible, from existing .[ch]
72 flex create \`lex.yy.c', if possible, from existing .c
73 help2man touch the output file
74 lex create \`lex.yy.c', if possible, from existing .c
75 makeinfo touch the output file
76 tar try tar, gnutar, gtar, then tar without non-portable flags
77 yacc create \`y.tab.[ch]', if possible, from existing .[ch]"
78 ;;
79
80 -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
81 echo "missing 0.3 - GNU automake"
82 ;;
83
84 -*)
85 echo 1>&2 "$0: Unknown \`$1' option"
86 echo 1>&2 "Try \`$0 --help' for more information"
87 exit 1
88 ;;
89
90 aclocal)
91 echo 1>&2 "\
92WARNING: \`$1' is missing on your system. You should only need it if
93 you modified \`acinclude.m4' or \`${configure_ac}'. You might want
94 to install the \`Automake' and \`Perl' packages. Grab them from
95 any GNU archive site."
96 touch aclocal.m4
97 ;;
98
99 autoconf)
100 echo 1>&2 "\
101WARNING: \`$1' is missing on your system. You should only need it if
102 you modified \`${configure_ac}'. You might want to install the
103 \`Autoconf' and \`GNU m4' packages. Grab them from any GNU
104 archive site."
105 touch configure
106 ;;
107
108 autoheader)
109 echo 1>&2 "\
110WARNING: \`$1' is missing on your system. You should only need it if
111 you modified \`acconfig.h' or \`${configure_ac}'. You might want
112 to install the \`Autoconf' and \`GNU m4' packages. Grab them
113 from any GNU archive site."
114 files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}`
115 test -z "$files" && files="config.h"
116 touch_files=
117 for f in $files; do
118 case "$f" in
119 *:*) touch_files="$touch_files "`echo "$f" |
120 sed -e 's/^[^:]*://' -e 's/:.*//'`;;
121 *) touch_files="$touch_files $f.in";;
122 esac
123 done
124 touch $touch_files
125 ;;
126
127 automake)
128 echo 1>&2 "\
129WARNING: \`$1' is missing on your system. You should only need it if
130 you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'.
131 You might want to install the \`Automake' and \`Perl' packages.
132 Grab them from any GNU archive site."
133 find . -type f -name Makefile.am -print |
134 sed 's/\.am$/.in/' |
135 while read f; do touch "$f"; done
136 ;;
137
138 bison|yacc)