File: autogen.sh

package info (click to toggle)
kbd 2.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 14,964 kB
  • sloc: ansic: 13,897; javascript: 3,038; sh: 1,973; pascal: 643; makefile: 602; lex: 532; yacc: 354; perl: 126
file content (99 lines) | stat: -rwxr-xr-x 2,056 bytes parent folder | download | duplicates (3)
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
#!/bin/sh -efu

OPT=
[ "${1-}" != '-f' ] || OPT=--force

fatal()
{
	printf >&2 '%s\n' "$*"
	exit 1
}

setvars()
{
	local varname="$1"; shift
	eval "prog_$varname=\"\$1\""; shift
	eval "version_matcher_$varname=\"\$1\""; shift
	eval "version_pattern_$varname=\"\$1\""; shift
	eval "args_$varname=\"\$@\""
}

getvars()
{
	eval "prog=\"\$prog_$1\""
	eval "version_matcher=\"\${version_matcher_$1:-gnu_version_matcher}\""
	eval "version_pattern=\"\$version_pattern_$1\""
	eval "args=\"\$args_$1\""
}

get_version()
{
	"$prog" --version </dev/null 2>/dev/null | head -1 | "$version_matcher"
}

gnu_version_matcher()
{
	sed -n -e 's/^.* \([0-9]\+\(\.[0-9]\+\)*\)$/\1/p'
}

vars=
register()
{
	setvars "$@"
	vars="$vars $1"
}

foreach()
{
	local varname
	for varname in $vars; do
		getvars "$varname"
		"$@"
	done
}

check_program()
{
	which "$prog" >/dev/null 2>&1 ||
		fatal "ERROR: You must have $varname installed to build the kbd."

	if [ -n "$version_pattern" ]; then
		local version="$(get_version "$varname")"
		[ -n "${version##$version_pattern}" ] ||
			return 0
		fatal "You must have $varname version >= $version_pattern, but you have $version ."
	fi
}

show_version()
{
	printf '   %10s: version ' "$prog"
	get_version "$varname"
}

execute()
{
	eval "set -- \$args_$varname"
	printf 'RUN: %s\n' "$prog $*"
	"$prog" "$@" || exit 1
}

register autopoint  "${AUTOPOINT:-autopoint}"   '' '' $OPT -f
register libtoolize "${LIBTOOLIZE:-libtoolize}" '' '' $OPT --install --copy --automake
register aclocal    "${ACLOCAL:-aclocal}"       '' '' $OPT -I m4
register autoconf   "${AUTOCONF:-autoconf}"     '' '' $OPT -I m4
register autoheader "${AUTOHEADER:-autoheader}" '' '' $OPT -I m4
register automake   "${AUTOMAKE:-automake}"     '' '' --force-missing --add-missing --copy

printf '\n%s' 'Checking build-system utilities: '
foreach check_program
printf 'OK\n'

printf '\n%s\n' 'Generating build-system with:'
foreach show_version
printf '\n'

rm -rf autom4te.cache
foreach execute

printf '\n%s\n\n' "Now type '${0%/*}/configure' and 'make' to compile."