blob: 46b8b1b15a87d6f6f3f1948c7f00f2d1c4fb1230 (
plain)
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
|
export TOPDIR=$(realpath ..)
if gmake --help >/dev/null 2>&1; then
export GMAKE=gmake
else
export GMAKE=make
fi
for subdir in bash bc; do
cd $subdir
pn=$($GMAKE show=PKG_NAME)
pa=$($GMAKE show=ALL_PKGOPTS)
typeset -u pnu=$pn
pd=$($GMAKE show=PKG_DESCR)
ph=$($GMAKE show=PKG_URL)
(
print "config ADK_COMPILE_$pnu"
print \\ttristate
print -n \\tdepends on
sp=' '
for xu in $pa; do
print -n "${sp}ADK_PACKAGE_$xu"
sp=' || '
done
print
print \\tdefault n
for xu in $pa; do
x=$($GMAKE show=PKGNAME_$xu)
print \\nconfig ADK_PACKAGE_$xu
xf=$x
while (( ${#xf} < 34 )); do
xf=$xf.
done
print "\tprompt \"$xf ${pd:-$pn}\""
print \\ttristate
print \\tdefault n
print \\tselect ADK_COMPILE_$pnu
if [[ -n $pd$ph ]]; then
print \\thelp
[[ -n $pd ]] && print "\t $pd"
[[ -n $pd && -n $ph ]] && print '\t '
[[ -n $ph ]] && print "\t $ph"
fi
done
) >Config.in
cd ..
done
|