forked from fontforge/fontforge
-
Notifications
You must be signed in to change notification settings - Fork 36
/
bootstrap.conf
165 lines (138 loc) · 4.02 KB
/
bootstrap.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# bootstrap.conf (fontforge) version 2014-07-31
# Written by Gary V. Vaughan, 2010
# Copyright (C) 2010 Free Software Foundation, Inc.
# This file is part of GNU fontforge.
#
# GNU fontforge 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 3 of the License, or
# (at your option) any later version.
#
# GNU fontforge 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 <http://www.gnu.org/licenses/>.
## -------------- ##
## Configuration. ##
## -------------- ##
# List of programs, minimum versions, and software urls required to
# bootstrap, maintain and release GNU Fontforge.
# Build prerequisites
buildreq='
git 1.5.5 http://git-scm.com
perl 5.5 http://perl.com
tar - http://www.gnu.org/s/tar
'
# Additional gnulib-tool options to use.
gnulib_tool_options='
'
# gnulib modules used by this package.
gnulib_modules='
warnings
manywarnings
c-strtod
gethostname
getline
iconv
inet_ntop
localeconv
progname
strcase
strtok_r
strndup
xalloc
xvasprintf
'
# Extra gnulib files that are not in modules, which override files of
# the same name installed by other bootstrap tools.
gnulib_non_module_files="$gnulib_non_module_files"'
'
# The not-synced with gnulib warning is bogus until upstream adopts
# the saner bootstrap script.
require_bootstrap_uptodate=:
## -------------------- ##
## Resource management. ##
## -------------------- ##
# require_git
# -----------
# Ignore git if it's not available, or we're not in a git checkout tree.
require_git=fontforge_require_git
fontforge_require_git ()
{
$debug_cmd
$opt_skip_git && GIT=true
test true = "$GIT" || {
# Test for .git directory as we auto-generate .gitignore
#
# note that we *need* to have the .git directory here because
# submodules are used like gnulib. However, for OSX build
# environments we might be a temporary "copy" of the tree
# which doesn't include .git so we are best to assume that the
# user knows what they are doing, and create the .git if it
# doesn't exist
#
if test -d .git ; then :; else
echo "WARNING: you do not have a .git directory in your build, so one is being created"
$GIT init;
fi
if ($GIT --version) >/dev/null 2>&1; then :; else
GIT=true
fi
}
func_verbose "GIT='$GIT'"
require_git=:
}
## --------------- ##
## Hook functions. ##
## --------------- ##
# fontforge_skip_po
# -----------------
# Ensure --skip-po (we have no translations in the Translation Project).
fontforge_skip_po ()
{
$debug_cmd
opt_skip_po=true
}
func_add_hook func_options fontforge_skip_po
# fontforge_ignore_gnulib_ignore
# ------------------------------
# gnulib-tool updates m4/.gitignore and lib/.gitignore, and keeping
# generated files under version control does not make sense. Since
# lib is entirely ignored, we only need to prepopulate the m4 ignore
# files with generated files not tracked by gnulib-tool.
fontforge_ignore_gnulib_ignore ()
{
$debug_cmd
$require_macro_dir
if test -f "$macro_dir/.gitignore" ; then
:
else
func_verbose "creating initial \`$macro_dir/.gitignore'"
cat > $macro_dir/.gitignore <<\EOF
# files created by gnulib, but that gnulib doesn't track
*~
.gitignore
/argz.m4
/gnulib-cache.m4
/gnulib-comp.m4
/libtool.m4
/ltdl.m4
/ltoptions.m4
/ltsugar.m4
/ltversion.m4
/lt~obsolete.m4
EOF
fi
}
func_add_hook func_prep fontforge_ignore_gnulib_ignore
# Local variables:
# mode: shell-script
# sh-indentation: 2
# eval: (add-hook 'write-file-hooks 'time-stamp)
# time-stamp-start: "# bootstrap.conf (fontforge) version "
# time-stamp-format: "%:y-%02m-%02d"
# time-stamp-end: "$"
# End: