Blame missing

Packit a7402c
#! /bin/sh
Packit a7402c
# Common wrapper for a few potentially missing GNU programs.
Packit a7402c
Packit a7402c
scriptversion=2013-10-28.13; # UTC
Packit a7402c
Packit a7402c
# Copyright (C) 1996-2014 Free Software Foundation, Inc.
Packit a7402c
# Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
Packit a7402c
Packit a7402c
# This program is free software; you can redistribute it and/or modify
Packit a7402c
# it under the terms of the GNU General Public License as published by
Packit a7402c
# the Free Software Foundation; either version 2, or (at your option)
Packit a7402c
# any later version.
Packit a7402c
Packit a7402c
# This program is distributed in the hope that it will be useful,
Packit a7402c
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit a7402c
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit a7402c
# GNU General Public License for more details.
Packit a7402c
Packit a7402c
# You should have received a copy of the GNU General Public License
Packit a7402c
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
Packit a7402c
Packit a7402c
# As a special exception to the GNU General Public License, if you
Packit a7402c
# distribute this file as part of a program that contains a
Packit a7402c
# configuration script generated by Autoconf, you may include it under
Packit a7402c
# the same distribution terms that you use for the rest of that program.
Packit a7402c
Packit a7402c
if test $# -eq 0; then
Packit a7402c
  echo 1>&2 "Try '$0 --help' for more information"
Packit a7402c
  exit 1
Packit a7402c
fi
Packit a7402c
Packit a7402c
case $1 in
Packit a7402c
Packit a7402c
  --is-lightweight)
Packit a7402c
    # Used by our autoconf macros to check whether the available missing
Packit a7402c
    # script is modern enough.
Packit a7402c
    exit 0
Packit a7402c
    ;;
Packit a7402c
Packit a7402c
  --run)
Packit a7402c
    # Back-compat with the calling convention used by older automake.
Packit a7402c
    shift
Packit a7402c
    ;;
Packit a7402c
Packit a7402c
  -h|--h|--he|--hel|--help)
Packit a7402c
    echo "\
Packit a7402c
$0 [OPTION]... PROGRAM [ARGUMENT]...
Packit a7402c
Packit a7402c
Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due
Packit a7402c
to PROGRAM being missing or too old.
Packit a7402c
Packit a7402c
Options:
Packit a7402c
  -h, --help      display this help and exit
Packit a7402c
  -v, --version   output version information and exit
Packit a7402c
Packit a7402c
Supported PROGRAM values:
Packit a7402c
  aclocal   autoconf  autoheader   autom4te  automake  makeinfo
Packit a7402c
  bison     yacc      flex         lex       help2man
Packit a7402c
Packit a7402c
Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and
Packit a7402c
'g' are ignored when checking the name.
Packit a7402c
Packit a7402c
Send bug reports to <bug-automake@gnu.org>."
Packit a7402c
    exit $?
Packit a7402c
    ;;
Packit a7402c
Packit a7402c
  -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
Packit a7402c
    echo "missing $scriptversion (GNU Automake)"
Packit a7402c
    exit $?
Packit a7402c
    ;;
Packit a7402c
Packit a7402c
  -*)
Packit a7402c
    echo 1>&2 "$0: unknown '$1' option"
Packit a7402c
    echo 1>&2 "Try '$0 --help' for more information"
Packit a7402c
    exit 1
Packit a7402c
    ;;
Packit a7402c
Packit a7402c
esac
Packit a7402c
Packit a7402c
# Run the given program, remember its exit status.
Packit a7402c
"$@"; st=$?
Packit a7402c
Packit a7402c
# If it succeeded, we are done.
Packit a7402c
test $st -eq 0 && exit 0
Packit a7402c
Packit a7402c
# Also exit now if we it failed (or wasn't found), and '--version' was
Packit a7402c
# passed; such an option is passed most likely to detect whether the
Packit a7402c
# program is present and works.
Packit a7402c
case $2 in --version|--help) exit $st;; esac
Packit a7402c
Packit a7402c
# Exit code 63 means version mismatch.  This often happens when the user
Packit a7402c
# tries to use an ancient version of a tool on a file that requires a
Packit a7402c
# minimum version.
Packit a7402c
if test $st -eq 63; then
Packit a7402c
  msg="probably too old"
Packit a7402c
elif test $st -eq 127; then
Packit a7402c
  # Program was missing.
Packit a7402c
  msg="missing on your system"
Packit a7402c
else
Packit a7402c
  # Program was found and executed, but failed.  Give up.
Packit a7402c
  exit $st
Packit a7402c
fi
Packit a7402c
Packit a7402c
perl_URL=http://www.perl.org/
Packit a7402c
flex_URL=http://flex.sourceforge.net/
Packit a7402c
gnu_software_URL=http://www.gnu.org/software
Packit a7402c
Packit a7402c
program_details ()
Packit a7402c
{
Packit a7402c
  case $1 in
Packit a7402c
    aclocal|automake)
Packit a7402c
      echo "The '$1' program is part of the GNU Automake package:"
Packit a7402c
      echo "<$gnu_software_URL/automake>"
Packit a7402c
      echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:"
Packit a7402c
      echo "<$gnu_software_URL/autoconf>"
Packit a7402c
      echo "<$gnu_software_URL/m4/>"
Packit a7402c
      echo "<$perl_URL>"
Packit a7402c
      ;;
Packit a7402c
    autoconf|autom4te|autoheader)
Packit a7402c
      echo "The '$1' program is part of the GNU Autoconf package:"
Packit a7402c
      echo "<$gnu_software_URL/autoconf/>"
Packit a7402c
      echo "It also requires GNU m4 and Perl in order to run:"
Packit a7402c
      echo "<$gnu_software_URL/m4/>"
Packit a7402c
      echo "<$perl_URL>"
Packit a7402c
      ;;
Packit a7402c
  esac
Packit a7402c
}
Packit a7402c
Packit a7402c
give_advice ()
Packit a7402c
{
Packit a7402c
  # Normalize program name to check for.
Packit a7402c
  normalized_program=`echo "$1" | sed '
Packit a7402c
    s/^gnu-//; t
Packit a7402c
    s/^gnu//; t
Packit a7402c
    s/^g//; t'`
Packit a7402c
Packit a7402c
  printf '%s\n' "'$1' is $msg."
Packit a7402c
Packit a7402c
  configure_deps="'configure.ac' or m4 files included by 'configure.ac'"
Packit a7402c
  case $normalized_program in
Packit a7402c
    autoconf*)
Packit a7402c
      echo "You should only need it if you modified 'configure.ac',"
Packit a7402c
      echo "or m4 files included by it."
Packit a7402c
      program_details 'autoconf'
Packit a7402c
      ;;
Packit a7402c
    autoheader*)
Packit a7402c
      echo "You should only need it if you modified 'acconfig.h' or"
Packit a7402c
      echo "$configure_deps."
Packit a7402c
      program_details 'autoheader'
Packit a7402c
      ;;
Packit a7402c
    automake*)
Packit a7402c
      echo "You should only need it if you modified 'Makefile.am' or"
Packit a7402c
      echo "$configure_deps."
Packit a7402c
      program_details 'automake'
Packit a7402c
      ;;
Packit a7402c
    aclocal*)
Packit a7402c
      echo "You should only need it if you modified 'acinclude.m4' or"
Packit a7402c
      echo "$configure_deps."
Packit a7402c
      program_details 'aclocal'
Packit a7402c
      ;;
Packit a7402c
   autom4te*)
Packit a7402c
      echo "You might have modified some maintainer files that require"
Packit a7402c
      echo "the 'autom4te' program to be rebuilt."
Packit a7402c
      program_details 'autom4te'
Packit a7402c
      ;;
Packit a7402c
    bison*|yacc*)
Packit a7402c
      echo "You should only need it if you modified a '.y' file."
Packit a7402c
      echo "You may want to install the GNU Bison package:"
Packit a7402c
      echo "<$gnu_software_URL/bison/>"
Packit a7402c
      ;;
Packit a7402c
    lex*|flex*)
Packit a7402c
      echo "You should only need it if you modified a '.l' file."
Packit a7402c
      echo "You may want to install the Fast Lexical Analyzer package:"
Packit a7402c
      echo "<$flex_URL>"
Packit a7402c
      ;;
Packit a7402c
    help2man*)
Packit a7402c
      echo "You should only need it if you modified a dependency" \
Packit a7402c
           "of a man page."
Packit a7402c
      echo "You may want to install the GNU Help2man package:"
Packit a7402c
      echo "<$gnu_software_URL/help2man/>"
Packit a7402c
    ;;
Packit a7402c
    makeinfo*)
Packit a7402c
      echo "You should only need it if you modified a '.texi' file, or"
Packit a7402c
      echo "any other file indirectly affecting the aspect of the manual."
Packit a7402c
      echo "You might want to install the Texinfo package:"
Packit a7402c
      echo "<$gnu_software_URL/texinfo/>"
Packit a7402c
      echo "The spurious makeinfo call might also be the consequence of"
Packit a7402c
      echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might"
Packit a7402c
      echo "want to install GNU make:"
Packit a7402c
      echo "<$gnu_software_URL/make/>"
Packit a7402c
      ;;
Packit a7402c
    *)
Packit a7402c
      echo "You might have modified some files without having the proper"
Packit a7402c
      echo "tools for further handling them.  Check the 'README' file, it"
Packit a7402c
      echo "often tells you about the needed prerequisites for installing"
Packit a7402c
      echo "this package.  You may also peek at any GNU archive site, in"
Packit a7402c
      echo "case some other package contains this missing '$1' program."
Packit a7402c
      ;;
Packit a7402c
  esac
Packit a7402c
}
Packit a7402c
Packit a7402c
give_advice "$1" | sed -e '1s/^/WARNING: /' \
Packit a7402c
                       -e '2,$s/^/         /' >&2
Packit a7402c
Packit a7402c
# Propagate the correct exit status (expected to be 127 for a program
Packit a7402c
# not found, 63 for a program that failed due to version mismatch).
Packit a7402c
exit $st
Packit a7402c
Packit a7402c
# Local variables:
Packit a7402c
# eval: (add-hook 'write-file-hooks 'time-stamp)
Packit a7402c
# time-stamp-start: "scriptversion="
Packit a7402c
# time-stamp-format: "%:y-%02m-%02d.%02H"
Packit a7402c
# time-stamp-time-zone: "UTC"
Packit a7402c
# time-stamp-end: "; # UTC"
Packit a7402c
# End: