Blame config/missing

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