configury: move usage examples into doc subdirectory.
[m4/ericb.git] / bootstrap.conf
blob4df5c7aa3847b612559d1c04c2c8caf72e57cc9a
1 # bootstrap.conf (GNU M4) version 2010-09-10
2 # Written by Gary V. Vaughan, 2010
4 # Copyright (C) 2010, 2013 Free Software Foundation, Inc.
6 # This file is part of GNU M4.
8 # GNU M4 is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
13 # GNU M4 is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 ## -------------- ##
23 ## Configuration. ##
24 ## -------------- ##
26 copyright_holder="Free Software Foundation, Inc."
28 # List of programs (and minimum versions) required to bootstrap, maintain
29 # and release Libtool.
30 buildreq='
31         help2man   1.29        http://www.gnu.org/s/help2man
32         makeinfo   4.13        http://www.gnu.org/s/texinfo
33         xz         -           http://tukaani.org/xz
36 # Instructions on how to install packages in $buildreq.
37 buildreq_readme=HACKING
39 # A file only visible in a vcs working directory.
40 checkout_only_file=HACKING
42 # Additional gnulib-tool options to use.
43 gnulib_tool_options=$gnulib_tool_options'
44         --libtool
47 # gnulib_modules must remain empty in order to get --update style
48 # gnulib-tool invocations, so we add the bootstrap components here.
49 gnulib_non_module_files=$gnulib_non_module_files"
50         build-aux/bootstrap.in
51         build-aux/extract-trace
52         build-aux/funclib.sh
53         build-aux/inline-source
54         build-aux/options-parser"
56 # List dependencies here too; we don't extract them, otherwise dependent
57 # modules could end up being imported to src/ *and* gnu/!
58 src_modules='
59 getopt-gnu
60 getopt-posix
61 version-etc-fsf
62 version-etc
63 xstrtol
66 # What ignore files to maintain.
67 vc_ignore=".gitignore"
70 ## --------------- ##
71 ## Hook functions. ##
72 ## --------------- ##
75 # m4_precopy_git_version_gen
76 # --------------------------
77 # Autopoint gets confused if git-version-gen is missing.
78 m4_precopy_git_version_gen ()
80     $debug_cmd
82     $require_build_aux
84     func_gnulib_tool_copy_file build-aux/git-version-gen $build_aux/git-version-gen
86 func_add_hook func_prep m4_precopy_git_version_gen
89 # m4_install_texinfo_diff_driver
90 # ------------------------------
91 # Help git to do a better job of merging texinfo files.
92 m4_install_texinfo_diff_driver ()
94     $debug_cmd
96     $require_git
98     test true = "$GIT" || {
99       if $GIT config diff.texinfo.funcname >/dev/null ; then
100         :
101       else
102         func_echo "initializing git texinfo diff driver"
103         git config diff.texinfo.funcname '^@node[ \t][ \t]*\\([^,][^,]*\\)'
104       fi
105     }
107 func_add_hook func_prep m4_install_texinfo_diff_driver
110 # m4_copy_src_modules
111 # -------------------
112 # Copy $src_modules from gnulib to src directory.
113 m4_copy_src_modules ()
115     $debug_cmd
117     $require_gnulib_tool
119     test true = "$gnulib_tool" || {
120       $require_macro_dir
122       for file in `$gnulib_tool --extract-filelist $src_modules | sort -u`
123       do
124         maybe_exit_cmd=:
126         func_basename $file
127         dest=$func_basename_result
129         case $file in
130           lib/*) dest=src/$dest ;;
131           m4/*)  dest=$macro_dir/$dest ;;
132           *)     func_error "$file: unknown file"
133                  maybe_exit_cmd="exit $EXIT_FAILURE"
134                  dest= ;;
135         esac
137         # Be sure to show all copying errors before bailing out
138         if test -n "$dest"; then
139           func_gnulib_tool_copy_file "$file" "$dest"
140         fi
141       done
143       $maybe_exit_cmd
144     }
146 func_add_hook func_gnulib_tool m4_copy_src_modules
149 # Local variables:
150 # mode: shell-script
151 # sh-indentation: 2
152 # eval: (add-hook 'write-file-hooks 'time-stamp)
153 # time-stamp-start: "# bootstrap.conf (GNU M4) version "
154 # time-stamp-format: "%:y-%02m-%02d"
155 # time-stamp-end: "$"
156 # End: