130766ffc5
* configure.ac: Remove definition and substitution of LIBQGPGME_LT_CURRENT, LIBQGPGME_LT_AGE, LIBQGPGME_LT_REVISION. Remove "qt qt5 qt6" from available_languages. Remove "qt" from default_languages. Remove options --enable-reduce-relocations and --enable-no-direct-extern-access. Remove checks for pkg-config, Qt 5, Qt 6 and C++ 17. Remove adding visibility flag to GPGME_QT5_CFLAGS and GPGME_QT6_CFLAGS. Remove definition of conditionals WANT_QT5 and WANT_QT6. Remove checks for doxygen and dot. Remove generation of files in lang/qt. * lang/Makefile.am (DIST_SUBDIRS): Remove qt. * lang/qt/.gitignore, lang/qt/AUTHORS, lang/qt/COPYING, lang/qt/ChangeLog, lang/qt/INSTALL, lang/qt/NEWS, lang/qt/autogen.rc, lang/qt/autogen.sh, lang/qt/configure.ac: New. * lang/qt/Makefile.am (EXTRA_DIST): Add autogen.sh, autogen.rc, VERSION. (RELEASE_ARCHIVE_SUFFIX, ACLOCAL_AMFLAGS, dist-hook, distcheck-hook, .PHONY, gen_start_date, gen-ChangeLog, RELEASE_NAME, release, sign-release): New (copied from top-level Makefile.am). * lang/qt/build-aux/compile, lang/qt/build-aux/config.guess, lang/qt/build-aux/config.sub, lang/qt/build-aux/depcomp, lang/qt/build-aux/install-sh, lang/qt/build-aux/libtool-patch.sed, lang/qt/build-aux/ltmain.sh, lang/qt/build-aux/missing: New. * lang/qt/doc/Doxyfile.in (INPUT): Update path. * m4/ax_check_compile_flag.m4: Move to... * lang/qt/m4/ax_check_compile_flag.m4: ...here * m4/pkg.m4: Move to... * lang/qt/m4/pkg.m4: ...here * m4/qt5.m4: Move to... * lang/qt/m4/qt5.m4: ...here * m4/qt6.m4: Move to... * lang/qt/m4/qt6.m4: ...here * lang/qt/m4/ax_cxx_compile_stdcxx.m4, lang/qt/m4/ax_gcc_func_attribute.m4, lang/qt/m4/gpg-error.m4, lang/qt/m4/gpgme.m4, lang/qt/m4/gpgmepp.m4, lang/qt/m4/libtool.m4, lang/qt/m4/ltoptions.m4, lang/qt/m4/ltsugar.m4, lang/qt/m4/ltversion.m4, lang/qt/m4/lt~obsolete.m4: New. * lang/qt/src/Makefile.am (AM_CPPFLAGS): Replace include paths of gpgmepp and gpgme relative to top_builddir with @GPGMEPP_CFLAGS@ and @GPGME_CFLAGS@. (libqgpgme_la_LIBADD, libqgpgmeqt6_la_LIBADD): Replace relative paths of libgpgmepp.la and libgpgme.la with @GPGMEPP_LIBS@ and @GPGME_LIBS@. * lang/qt/tests/Makefile.am (EXTRA_DIST): Add new files. (LDADD): Replace relative paths of libgpgmepp.la and libgpgme.la with @GPGMEPP_LIBS@ and @GPGME_LIBS@. (AM_CPPFLAGS): Replace include paths of gpgmepp and gpgme relative to top_builddir with @GPGMEPP_CFLAGS@ and @GPGME_CFLAGS@. (pubring-stamp): Use local copies of pubdemo.asc and secdemo.asc. * lang/qt/tests/pubdemo.asc, lang/qt/tests/secdemo.asc, lang/qt/tests/start-stop-agent: New. -- This makes building and distributing QGpgME independent of the sources of gpgme. Many of the new files are copied from gpgme to make QGpgME a self-contained package. A later commit re-adds the possibility to build QGpgME as nested package together with gpgme. GnuPG-bug-id: 7110
216 lines
6.7 KiB
Bash
Executable File
216 lines
6.7 KiB
Bash
Executable File
#! /bin/sh
|
|
# Common wrapper for a few potentially missing GNU programs.
|
|
|
|
scriptversion=2013-10-28.13; # UTC
|
|
|
|
# Copyright (C) 1996-2013 Free Software Foundation, Inc.
|
|
# Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2, or (at your option)
|
|
# any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
# As a special exception to the GNU General Public License, if you
|
|
# distribute this file as part of a program that contains a
|
|
# configuration script generated by Autoconf, you may include it under
|
|
# the same distribution terms that you use for the rest of that program.
|
|
|
|
if test $# -eq 0; then
|
|
echo 1>&2 "Try '$0 --help' for more information"
|
|
exit 1
|
|
fi
|
|
|
|
case $1 in
|
|
|
|
--is-lightweight)
|
|
# Used by our autoconf macros to check whether the available missing
|
|
# script is modern enough.
|
|
exit 0
|
|
;;
|
|
|
|
--run)
|
|
# Back-compat with the calling convention used by older automake.
|
|
shift
|
|
;;
|
|
|
|
-h|--h|--he|--hel|--help)
|
|
echo "\
|
|
$0 [OPTION]... PROGRAM [ARGUMENT]...
|
|
|
|
Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due
|
|
to PROGRAM being missing or too old.
|
|
|
|
Options:
|
|
-h, --help display this help and exit
|
|
-v, --version output version information and exit
|
|
|
|
Supported PROGRAM values:
|
|
aclocal autoconf autoheader autom4te automake makeinfo
|
|
bison yacc flex lex help2man
|
|
|
|
Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and
|
|
'g' are ignored when checking the name.
|
|
|
|
Send bug reports to <bug-automake@gnu.org>."
|
|
exit $?
|
|
;;
|
|
|
|
-v|--v|--ve|--ver|--vers|--versi|--versio|--version)
|
|
echo "missing $scriptversion (GNU Automake)"
|
|
exit $?
|
|
;;
|
|
|
|
-*)
|
|
echo 1>&2 "$0: unknown '$1' option"
|
|
echo 1>&2 "Try '$0 --help' for more information"
|
|
exit 1
|
|
;;
|
|
|
|
esac
|
|
|
|
# Run the given program, remember its exit status.
|
|
"$@"; st=$?
|
|
|
|
# If it succeeded, we are done.
|
|
test $st -eq 0 && exit 0
|
|
|
|
# Also exit now if we it failed (or wasn't found), and '--version' was
|
|
# passed; such an option is passed most likely to detect whether the
|
|
# program is present and works.
|
|
case $2 in --version|--help) exit $st;; esac
|
|
|
|
# Exit code 63 means version mismatch. This often happens when the user
|
|
# tries to use an ancient version of a tool on a file that requires a
|
|
# minimum version.
|
|
if test $st -eq 63; then
|
|
msg="probably too old"
|
|
elif test $st -eq 127; then
|
|
# Program was missing.
|
|
msg="missing on your system"
|
|
else
|
|
# Program was found and executed, but failed. Give up.
|
|
exit $st
|
|
fi
|
|
|
|
perl_URL=http://www.perl.org/
|
|
flex_URL=http://flex.sourceforge.net/
|
|
gnu_software_URL=https://www.gnu.org/software
|
|
|
|
program_details ()
|
|
{
|
|
case $1 in
|
|
aclocal|automake)
|
|
echo "The '$1' program is part of the GNU Automake package:"
|
|
echo "<$gnu_software_URL/automake>"
|
|
echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:"
|
|
echo "<$gnu_software_URL/autoconf>"
|
|
echo "<$gnu_software_URL/m4/>"
|
|
echo "<$perl_URL>"
|
|
;;
|
|
autoconf|autom4te|autoheader)
|
|
echo "The '$1' program is part of the GNU Autoconf package:"
|
|
echo "<$gnu_software_URL/autoconf/>"
|
|
echo "It also requires GNU m4 and Perl in order to run:"
|
|
echo "<$gnu_software_URL/m4/>"
|
|
echo "<$perl_URL>"
|
|
;;
|
|
esac
|
|
}
|
|
|
|
give_advice ()
|
|
{
|
|
# Normalize program name to check for.
|
|
normalized_program=`echo "$1" | sed '
|
|
s/^gnu-//; t
|
|
s/^gnu//; t
|
|
s/^g//; t'`
|
|
|
|
printf '%s\n' "'$1' is $msg."
|
|
|
|
configure_deps="'configure.ac' or m4 files included by 'configure.ac'"
|
|
case $normalized_program in
|
|
autoconf*)
|
|
echo "You should only need it if you modified 'configure.ac',"
|
|
echo "or m4 files included by it."
|
|
program_details 'autoconf'
|
|
;;
|
|
autoheader*)
|
|
echo "You should only need it if you modified 'acconfig.h' or"
|
|
echo "$configure_deps."
|
|
program_details 'autoheader'
|
|
;;
|
|
automake*)
|
|
echo "You should only need it if you modified 'Makefile.am' or"
|
|
echo "$configure_deps."
|
|
program_details 'automake'
|
|
;;
|
|
aclocal*)
|
|
echo "You should only need it if you modified 'acinclude.m4' or"
|
|
echo "$configure_deps."
|
|
program_details 'aclocal'
|
|
;;
|
|
autom4te*)
|
|
echo "You might have modified some maintainer files that require"
|
|
echo "the 'autom4te' program to be rebuilt."
|
|
program_details 'autom4te'
|
|
;;
|
|
bison*|yacc*)
|
|
echo "You should only need it if you modified a '.y' file."
|
|
echo "You may want to install the GNU Bison package:"
|
|
echo "<$gnu_software_URL/bison/>"
|
|
;;
|
|
lex*|flex*)
|
|
echo "You should only need it if you modified a '.l' file."
|
|
echo "You may want to install the Fast Lexical Analyzer package:"
|
|
echo "<$flex_URL>"
|
|
;;
|
|
help2man*)
|
|
echo "You should only need it if you modified a dependency" \
|
|
"of a man page."
|
|
echo "You may want to install the GNU Help2man package:"
|
|
echo "<$gnu_software_URL/help2man/>"
|
|
;;
|
|
makeinfo*)
|
|
echo "You should only need it if you modified a '.texi' file, or"
|
|
echo "any other file indirectly affecting the aspect of the manual."
|
|
echo "You might want to install the Texinfo package:"
|
|
echo "<$gnu_software_URL/texinfo/>"
|
|
echo "The spurious makeinfo call might also be the consequence of"
|
|
echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might"
|
|
echo "want to install GNU make:"
|
|
echo "<$gnu_software_URL/make/>"
|
|
;;
|
|
*)
|
|
echo "You might have modified some files without having the proper"
|
|
echo "tools for further handling them. Check the 'README' file, it"
|
|
echo "often tells you about the needed prerequisites for installing"
|
|
echo "this package. You may also peek at any GNU archive site, in"
|
|
echo "case some other package contains this missing '$1' program."
|
|
;;
|
|
esac
|
|
}
|
|
|
|
give_advice "$1" | sed -e '1s/^/WARNING: /' \
|
|
-e '2,$s/^/ /' >&2
|
|
|
|
# Propagate the correct exit status (expected to be 127 for a program
|
|
# not found, 63 for a program that failed due to version mismatch).
|
|
exit $st
|
|
|
|
# Local variables:
|
|
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
|
# time-stamp-start: "scriptversion="
|
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
|
# time-stamp-time-zone: "UTC"
|
|
# time-stamp-end: "; # UTC"
|
|
# End:
|