annotate src/libvorbis-1.3.3/missing @ 1:05aa0afa9217

Bring in flac, ogg, vorbis
author Chris Cannam
date Tue, 19 Mar 2013 17:37:49 +0000
parents
children
rev   line source
Chris@1 1 #! /bin/sh
Chris@1 2 # Common stub for a few missing GNU programs while installing.
Chris@1 3
Chris@1 4 scriptversion=2005-06-08.21
Chris@1 5
Chris@1 6 # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005
Chris@1 7 # Free Software Foundation, Inc.
Chris@1 8 # Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
Chris@1 9
Chris@1 10 # This program is free software; you can redistribute it and/or modify
Chris@1 11 # it under the terms of the GNU General Public License as published by
Chris@1 12 # the Free Software Foundation; either version 2, or (at your option)
Chris@1 13 # any later version.
Chris@1 14
Chris@1 15 # This program is distributed in the hope that it will be useful,
Chris@1 16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
Chris@1 17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Chris@1 18 # GNU General Public License for more details.
Chris@1 19
Chris@1 20 # You should have received a copy of the GNU General Public License
Chris@1 21 # along with this program; if not, write to the Free Software
Chris@1 22 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
Chris@1 23 # 02110-1301, USA.
Chris@1 24
Chris@1 25 # As a special exception to the GNU General Public License, if you
Chris@1 26 # distribute this file as part of a program that contains a
Chris@1 27 # configuration script generated by Autoconf, you may include it under
Chris@1 28 # the same distribution terms that you use for the rest of that program.
Chris@1 29
Chris@1 30 if test $# -eq 0; then
Chris@1 31 echo 1>&2 "Try \`$0 --help' for more information"
Chris@1 32 exit 1
Chris@1 33 fi
Chris@1 34
Chris@1 35 run=:
Chris@1 36
Chris@1 37 # In the cases where this matters, `missing' is being run in the
Chris@1 38 # srcdir already.
Chris@1 39 if test -f configure.ac; then
Chris@1 40 configure_ac=configure.ac
Chris@1 41 else
Chris@1 42 configure_ac=configure.in
Chris@1 43 fi
Chris@1 44
Chris@1 45 msg="missing on your system"
Chris@1 46
Chris@1 47 case "$1" in
Chris@1 48 --run)
Chris@1 49 # Try to run requested program, and just exit if it succeeds.
Chris@1 50 run=
Chris@1 51 shift
Chris@1 52 "$@" && exit 0
Chris@1 53 # Exit code 63 means version mismatch. This often happens
Chris@1 54 # when the user try to use an ancient version of a tool on
Chris@1 55 # a file that requires a minimum version. In this case we
Chris@1 56 # we should proceed has if the program had been absent, or
Chris@1 57 # if --run hadn't been passed.
Chris@1 58 if test $? = 63; then
Chris@1 59 run=:
Chris@1 60 msg="probably too old"
Chris@1 61 fi
Chris@1 62 ;;
Chris@1 63
Chris@1 64 -h|--h|--he|--hel|--help)
Chris@1 65 echo "\
Chris@1 66 $0 [OPTION]... PROGRAM [ARGUMENT]...
Chris@1 67
Chris@1 68 Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an
Chris@1 69 error status if there is no known handling for PROGRAM.
Chris@1 70
Chris@1 71 Options:
Chris@1 72 -h, --help display this help and exit
Chris@1 73 -v, --version output version information and exit
Chris@1 74 --run try to run the given command, and emulate it if it fails
Chris@1 75
Chris@1 76 Supported PROGRAM values:
Chris@1 77 aclocal touch file \`aclocal.m4'
Chris@1 78 autoconf touch file \`configure'
Chris@1 79 autoheader touch file \`config.h.in'
Chris@1 80 automake touch all \`Makefile.in' files
Chris@1 81 bison create \`y.tab.[ch]', if possible, from existing .[ch]
Chris@1 82 flex create \`lex.yy.c', if possible, from existing .c
Chris@1 83 help2man touch the output file
Chris@1 84 lex create \`lex.yy.c', if possible, from existing .c
Chris@1 85 makeinfo touch the output file
Chris@1 86 tar try tar, gnutar, gtar, then tar without non-portable flags
Chris@1 87 yacc create \`y.tab.[ch]', if possible, from existing .[ch]
Chris@1 88
Chris@1 89 Send bug reports to <bug-automake@gnu.org>."
Chris@1 90 exit $?
Chris@1 91 ;;
Chris@1 92
Chris@1 93 -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
Chris@1 94 echo "missing $scriptversion (GNU Automake)"
Chris@1 95 exit $?
Chris@1 96 ;;
Chris@1 97
Chris@1 98 -*)
Chris@1 99 echo 1>&2 "$0: Unknown \`$1' option"
Chris@1 100 echo 1>&2 "Try \`$0 --help' for more information"
Chris@1 101 exit 1
Chris@1 102 ;;
Chris@1 103
Chris@1 104 esac
Chris@1 105
Chris@1 106 # Now exit if we have it, but it failed. Also exit now if we
Chris@1 107 # don't have it and --version was passed (most likely to detect
Chris@1 108 # the program).
Chris@1 109 case "$1" in
Chris@1 110 lex|yacc)
Chris@1 111 # Not GNU programs, they don't have --version.
Chris@1 112 ;;
Chris@1 113
Chris@1 114 tar)
Chris@1 115 if test -n "$run"; then
Chris@1 116 echo 1>&2 "ERROR: \`tar' requires --run"
Chris@1 117 exit 1
Chris@1 118 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
Chris@1 119 exit 1
Chris@1 120 fi
Chris@1 121 ;;
Chris@1 122
Chris@1 123 *)
Chris@1 124 if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
Chris@1 125 # We have it, but it failed.
Chris@1 126 exit 1
Chris@1 127 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
Chris@1 128 # Could not run --version or --help. This is probably someone
Chris@1 129 # running `$TOOL --version' or `$TOOL --help' to check whether
Chris@1 130 # $TOOL exists and not knowing $TOOL uses missing.
Chris@1 131 exit 1
Chris@1 132 fi
Chris@1 133 ;;
Chris@1 134 esac
Chris@1 135
Chris@1 136 # If it does not exist, or fails to run (possibly an outdated version),
Chris@1 137 # try to emulate it.
Chris@1 138 case "$1" in
Chris@1 139 aclocal*)
Chris@1 140 echo 1>&2 "\
Chris@1 141 WARNING: \`$1' is $msg. You should only need it if
Chris@1 142 you modified \`acinclude.m4' or \`${configure_ac}'. You might want
Chris@1 143 to install the \`Automake' and \`Perl' packages. Grab them from
Chris@1 144 any GNU archive site."
Chris@1 145 touch aclocal.m4
Chris@1 146 ;;
Chris@1 147
Chris@1 148 autoconf)
Chris@1 149 echo 1>&2 "\
Chris@1 150 WARNING: \`$1' is $msg. You should only need it if
Chris@1 151 you modified \`${configure_ac}'. You might want to install the
Chris@1 152 \`Autoconf' and \`GNU m4' packages. Grab them from any GNU
Chris@1 153 archive site."
Chris@1 154 touch configure
Chris@1 155 ;;
Chris@1 156
Chris@1 157 autoheader)
Chris@1 158 echo 1>&2 "\
Chris@1 159 WARNING: \`$1' is $msg. You should only need it if
Chris@1 160 you modified \`acconfig.h' or \`${configure_ac}'. You might want
Chris@1 161 to install the \`Autoconf' and \`GNU m4' packages. Grab them
Chris@1 162 from any GNU archive site."
Chris@1 163 files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}`
Chris@1 164 test -z "$files" && files="config.h"
Chris@1 165 touch_files=
Chris@1 166 for f in $files; do
Chris@1 167 case "$f" in
Chris@1 168 *:*) touch_files="$touch_files "`echo "$f" |
Chris@1 169 sed -e 's/^[^:]*://' -e 's/:.*//'`;;
Chris@1 170 *) touch_files="$touch_files $f.in";;
Chris@1 171 esac
Chris@1 172 done
Chris@1 173 touch $touch_files
Chris@1 174 ;;
Chris@1 175
Chris@1 176 automake*)
Chris@1 177 echo 1>&2 "\
Chris@1 178 WARNING: \`$1' is $msg. You should only need it if
Chris@1 179 you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'.
Chris@1 180 You might want to install the \`Automake' and \`Perl' packages.
Chris@1 181 Grab them from any GNU archive site."
Chris@1 182 find . -type f -name Makefile.am -print |
Chris@1 183 sed 's/\.am$/.in/' |
Chris@1 184 while read f; do touch "$f"; done
Chris@1 185 ;;
Chris@1 186
Chris@1 187 autom4te)
Chris@1 188 echo 1>&2 "\
Chris@1 189 WARNING: \`$1' is needed, but is $msg.
Chris@1 190 You might have modified some files without having the
Chris@1 191 proper tools for further handling them.
Chris@1 192 You can get \`$1' as part of \`Autoconf' from any GNU
Chris@1 193 archive site."
Chris@1 194
Chris@1 195 file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
Chris@1 196 test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'`
Chris@1 197 if test -f "$file"; then
Chris@1 198 touch $file
Chris@1 199 else
Chris@1 200 test -z "$file" || exec >$file
Chris@1 201 echo "#! /bin/sh"
Chris@1 202 echo "# Created by GNU Automake missing as a replacement of"
Chris@1 203 echo "# $ $@"
Chris@1 204 echo "exit 0"
Chris@1 205 chmod +x $file
Chris@1 206 exit 1
Chris@1 207 fi
Chris@1 208 ;;
Chris@1 209
Chris@1 210 bison|yacc)
Chris@1 211 echo 1>&2 "\
Chris@1 212 WARNING: \`$1' $msg. You should only need it if
Chris@1 213 you modified a \`.y' file. You may need the \`Bison' package
Chris@1 214 in order for those modifications to take effect. You can get
Chris@1 215 \`Bison' from any GNU archive site."
Chris@1 216 rm -f y.tab.c y.tab.h
Chris@1 217 if [ $# -ne 1 ]; then
Chris@1 218 eval LASTARG="\${$#}"
Chris@1 219 case "$LASTARG" in
Chris@1 220 *.y)
Chris@1 221 SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
Chris@1 222 if [ -f "$SRCFILE" ]; then
Chris@1 223 cp "$SRCFILE" y.tab.c
Chris@1 224 fi
Chris@1 225 SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
Chris@1 226 if [ -f "$SRCFILE" ]; then
Chris@1 227 cp "$SRCFILE" y.tab.h
Chris@1 228 fi
Chris@1 229 ;;
Chris@1 230 esac
Chris@1 231 fi
Chris@1 232 if [ ! -f y.tab.h ]; then
Chris@1 233 echo >y.tab.h
Chris@1 234 fi
Chris@1 235 if [ ! -f y.tab.c ]; then
Chris@1 236 echo 'main() { return 0; }' >y.tab.c
Chris@1 237 fi
Chris@1 238 ;;
Chris@1 239
Chris@1 240 lex|flex)
Chris@1 241 echo 1>&2 "\
Chris@1 242 WARNING: \`$1' is $msg. You should only need it if
Chris@1 243 you modified a \`.l' file. You may need the \`Flex' package
Chris@1 244 in order for those modifications to take effect. You can get
Chris@1 245 \`Flex' from any GNU archive site."
Chris@1 246 rm -f lex.yy.c
Chris@1 247 if [ $# -ne 1 ]; then
Chris@1 248 eval LASTARG="\${$#}"
Chris@1 249 case "$LASTARG" in
Chris@1 250 *.l)
Chris@1 251 SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
Chris@1 252 if [ -f "$SRCFILE" ]; then
Chris@1 253 cp "$SRCFILE" lex.yy.c
Chris@1 254 fi
Chris@1 255 ;;
Chris@1 256 esac
Chris@1 257 fi
Chris@1 258 if [ ! -f lex.yy.c ]; then
Chris@1 259 echo 'main() { return 0; }' >lex.yy.c
Chris@1 260 fi
Chris@1 261 ;;
Chris@1 262
Chris@1 263 help2man)
Chris@1 264 echo 1>&2 "\
Chris@1 265 WARNING: \`$1' is $msg. You should only need it if
Chris@1 266 you modified a dependency of a manual page. You may need the
Chris@1 267 \`Help2man' package in order for those modifications to take
Chris@1 268 effect. You can get \`Help2man' from any GNU archive site."
Chris@1 269
Chris@1 270 file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
Chris@1 271 if test -z "$file"; then
Chris@1 272 file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'`
Chris@1 273 fi
Chris@1 274 if [ -f "$file" ]; then
Chris@1 275 touch $file
Chris@1 276 else
Chris@1 277 test -z "$file" || exec >$file
Chris@1 278 echo ".ab help2man is required to generate this page"
Chris@1 279 exit 1
Chris@1 280 fi
Chris@1 281 ;;
Chris@1 282
Chris@1 283 makeinfo)
Chris@1 284 echo 1>&2 "\
Chris@1 285 WARNING: \`$1' is $msg. You should only need it if
Chris@1 286 you modified a \`.texi' or \`.texinfo' file, or any other file
Chris@1 287 indirectly affecting the aspect of the manual. The spurious
Chris@1 288 call might also be the consequence of using a buggy \`make' (AIX,
Chris@1 289 DU, IRIX). You might want to install the \`Texinfo' package or
Chris@1 290 the \`GNU make' package. Grab either from any GNU archive site."
Chris@1 291 # The file to touch is that specified with -o ...
Chris@1 292 file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
Chris@1 293 if test -z "$file"; then
Chris@1 294 # ... or it is the one specified with @setfilename ...
Chris@1 295 infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
Chris@1 296 file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile`
Chris@1 297 # ... or it is derived from the source name (dir/f.texi becomes f.info)
Chris@1 298 test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
Chris@1 299 fi
Chris@1 300 # If the file does not exist, the user really needs makeinfo;
Chris@1 301 # let's fail without touching anything.
Chris@1 302 test -f $file || exit 1
Chris@1 303 touch $file
Chris@1 304 ;;
Chris@1 305
Chris@1 306 tar)
Chris@1 307 shift
Chris@1 308
Chris@1 309 # We have already tried tar in the generic part.
Chris@1 310 # Look for gnutar/gtar before invocation to avoid ugly error
Chris@1 311 # messages.
Chris@1 312 if (gnutar --version > /dev/null 2>&1); then
Chris@1 313 gnutar "$@" && exit 0
Chris@1 314 fi
Chris@1 315 if (gtar --version > /dev/null 2>&1); then
Chris@1 316 gtar "$@" && exit 0
Chris@1 317 fi
Chris@1 318 firstarg="$1"
Chris@1 319 if shift; then
Chris@1 320 case "$firstarg" in
Chris@1 321 *o*)
Chris@1 322 firstarg=`echo "$firstarg" | sed s/o//`
Chris@1 323 tar "$firstarg" "$@" && exit 0
Chris@1 324 ;;
Chris@1 325 esac
Chris@1 326 case "$firstarg" in
Chris@1 327 *h*)
Chris@1 328 firstarg=`echo "$firstarg" | sed s/h//`
Chris@1 329 tar "$firstarg" "$@" && exit 0
Chris@1 330 ;;
Chris@1 331 esac
Chris@1 332 fi
Chris@1 333
Chris@1 334 echo 1>&2 "\
Chris@1 335 WARNING: I can't seem to be able to run \`tar' with the given arguments.
Chris@1 336 You may want to install GNU tar or Free paxutils, or check the
Chris@1 337 command line arguments."
Chris@1 338 exit 1
Chris@1 339 ;;
Chris@1 340
Chris@1 341 *)
Chris@1 342 echo 1>&2 "\
Chris@1 343 WARNING: \`$1' is needed, and is $msg.
Chris@1 344 You might have modified some files without having the
Chris@1 345 proper tools for further handling them. Check the \`README' file,
Chris@1 346 it often tells you about the needed prerequisites for installing
Chris@1 347 this package. You may also peek at any GNU archive site, in case
Chris@1 348 some other package would contain this missing \`$1' program."
Chris@1 349 exit 1
Chris@1 350 ;;
Chris@1 351 esac
Chris@1 352
Chris@1 353 exit 0
Chris@1 354
Chris@1 355 # Local variables:
Chris@1 356 # eval: (add-hook 'write-file-hooks 'time-stamp)
Chris@1 357 # time-stamp-start: "scriptversion="
Chris@1 358 # time-stamp-format: "%:y-%02m-%02d.%02H"
Chris@1 359 # time-stamp-end: "$"
Chris@1 360 # End: