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 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
|
#!/bin/sh
ROOT=../../..
proot=$ROOT/src/librnd/plugins
### generate description.txt (file formats) ###
. $ROOT/util/devhelpers/awk_on_formats.sh
# generate version
awk '
/#define[ \t]*version[ \t]*/ {
ver=$3
gsub("\"", "", ver)
print ver > "auto/ver.full"
split(ver, A, "-")
split(A[1], V, "[.]")
print V[1] > "auto/ver.major"
print V[2] > "auto/ver.minor"
print V[3] > "auto/ver.patch"
print A[2] > "auto/ver.suffix"
}' < $ROOT/scconfig/hooks.c
awk_on_formats '
{ print $0 }
function out(dir, type ,n,v,A,tmp)
{
v = split(FMTS[dir, type], A, " *<br> *")
if (v < 1) return
print " -", dir, type ":"
for(n = 1; n <= v; n++) {
tmp = A[n]
sub("^ *", "", tmp)
print " * " tmp
}
}
/(lihata)/ {
t = split(types, T, " ")
for(n = 1; n <= t; n++) {
out("import", T[n]);
out("export", T[n]);
}
exit
}
' < description.txt > description2.txt && mv description2.txt description.txt
### generate packages.html and auto/ ###
#meta_deps="core io-standard io-alien hid-gtk2-gl hid-gtk2-gdk export export-sim export-extra auto extra cloud doc import-net"
(echo '
<html>
<body>
'
(
for n in $proot/*/*.pup
do
pkg=`basename $n`
sed "s/^/$pkg /" < $n
done
for n in $proot/*/*.tmpasm
do
sed "s@^@$n @" < $n
done
cat extra.digest
) | awk -v "meta_deps=$meta_deps" '
BEGIN {
q = "\""
gsub(" ", " librnd4-", meta_deps)
sub("^", "librnd4-", meta_deps)
while((getline < "desc") == 1) {
if ($0 ~ "^@") {
pkg=$0
sub("^librnd[0-9]?-", pkg)
sub("^@", "", pkg)
getline SHORT[pkg] < "desc"
continue
}
LONG[pkg] = LONG[pkg] $0 " "
}
}
{
if ($1 ~ "^[!]") {
in_librnd = 1
sub("^[!]", "", $1)
}
else
in_librnd = 0
}
($1 ~ "@files") {
pkg=$2
files=$0
sub("@files[ \t]*[^ \t]*[ \t]", "", files)
IFILES[pkg] = files
PKG[pkg] = "<i>n/a</i>"
}
($1 ~ "@appendfiles") {
pkg=$2
files=$0
sub("@appendfiles[ \t]*[^ \t]*[ \t]", "", files)
IFILES[pkg] = IFILES[pkg] " " files
}
($1 ~ "@appendextdeps") {
pkg=$2
files=$0
sub("@appendextdeps[ \t]*[^ \t]*[ \t]", "", files)
EXTDEPS[pkg] = EXTDEPS[pkg] " " files
}
($1 ~ "@appenddeps") {
pkg=$2
deps=$0
sub("@appenddeps[ \t]*[^ \t]*[ \t]", "", deps)
PKG_DEP[pkg] = PKG_DEP[pkg] " " deps
}
($1 ~ "[.]pup$") {
pkg = $1;
sub("[.]pup$", "", pkg)
if (pkg == "(core)") pkg="core"
}
($1 ~ "[.]tmpasm$") {
pkg = $1;
sub("/Plug.tmpasm$", "", pkg)
sub(".*/", "", pkg)
if (pkg == "(core)") pkg="core"
}
($1 ~ "[.]pup$") {
val=$3
cfg = pkg
if (val == "(core)") val="librnd4"
else if (val == "core") val="librnd4"
else val = "librnd4-" val
}
{
pkg = "librnd4-" pkg
}
($1 ~ "[.]pup$") && ($2 == "$package") {
PKG[val] = PKG[val] " " cfg;
PLUGIN[pkg] = val;
if (val == "librnd4") {
CFG_BUILDIN[cfg]++
}
else {
CFG_PLUGIN[cfg]++
print in_librnd, $1 > "L1"
if (in_librnd)
dir = "$LP"
else
dir="$P"
IFILES[val] = IFILES[val] " " dir "/" cfg ".pup " dir "/" cfg ".so"
}
}
($1 ~ "[.]pup$") && ($2 == "dep") { PLUGIN_DEP[pkg] = PLUGIN_DEP[pkg] " " val }
($1 ~ "[.]pup$") && ($2 == "$extdeps") {
tmp=$0
sub("^[^ \t]*[ \t]*[$]extdeps[ \t]*", "", tmp)
PUPEXTDEPS[pkg] = PUPEXTDEPS[pkg] " " tmp
}
($1 ~ "[.]tmpasm$") && ($3 == "/local/rnd/mod/CONFFILE") {
# no confdir in librnd
disable_C = 1
next
fn=$4
sub("[{][ \t]*", "", fn)
sub("[ \t]*[}]", "", fn)
if (in_librnd)
dir = "$LC"
else
dir="$C"
if (CONFFILE[PLUGIN[pkg]] == "")
CONFFILE[PLUGIN[pkg]] = dir "/" fn
else
CONFFILE[PLUGIN[pkg]] = CONFFILE[PLUGIN[pkg]] " " dir "/" fn
}
function add_dep(pkg, depson, ds)
{
if (pkg != depson) {
ds = pkg "::" depson
if (!(ds in DEP_SEEN)) {
DEP_SEEN[ds] = 1
PKG_DEP[pkg] = PKG_DEP[pkg] " " depson
}
}
}
function strip(s) {
sub("^[ \t]*", "", s)
sub("[ \t]*$", "", s)
return s
}
END {
# everything depends on core
for(pkg in PKG)
add_dep(pkg, "librnd4")
# calculate dependencies
for(plg in PLUGIN_DEP) {
v = split(PLUGIN_DEP[plg], A, " ")
pkg = PLUGIN[plg]
if (pkg == "") continue
for(n = 1; n <= v; n++) {
if (A[n] == "") continue
depson = PLUGIN[A[n]]
if (depson == "")
depson = A[n]
add_dep(pkg, depson)
}
}
PKG_DEP["core"] = ""
PKG_DEP["doc"] = ""
PKG_DEP["librnd"] = meta_deps
# PKG["librnd"] = "<metapackage>"
PKG["librnd4-doc"] = " "
IFILES["librnd4-doc"] = "/usr/share/doc/*"
print "<h3> Package summary and dependencies </h3>"
print "<table border=1>"
print "<tr><th> package <th> depends on (packages) <th> consists of (plugins)"
for(pkg in PKG) {
if (pkg == "librnd4")
print "<tr><th>" pkg "<td>" PKG_DEP[pkg] "<td>(builtin: " PKG[pkg] ")"
else
print "<tr><th>" pkg "<td>" PKG_DEP[pkg] "<td>" PKG[pkg]
print strip(PKG_DEP[pkg]) > "auto/" pkg ".deps"
print pkg > "auto/List"
}
print "</table>"
print "<h3> Package description and files </h3>"
print "<table border=1>"
print "<tr><th> package <th> files <th> short <th> long"
for(pkg in PKG) {
if (SHORT[pkg] == "") SHORT[pkg] = " "
if (LONG[pkg] == "") LONG[pkg] = " "
print "<tr><th>" pkg "<td>" IFILES[pkg] " <i>" CONFFILE[pkg] "</i>" "<td>" SHORT[pkg] "<td>" LONG[pkg]
print strip(IFILES[pkg] " " CONFFILE[pkg]) > "auto/" pkg ".files"
print strip(SHORT[pkg]) > "auto/" pkg ".short"
print strip(LONG[pkg]) > "auto/" pkg ".long"
}
print "</table>"
print "<h3> External dependencies of packages </h3>"
print "<p>Note: package names differ from distro to distro, this table only approximates the packahge names external dependencies have on your target."
print "<p>Note: fungw+genht is an optional dependency for full user scripting. If partial user scripting is enough, you can skip both."
print "<p>"
print "<table border=1>"
print "<tr><th> package <th> extneral dependencies"
for(plg in PLUGIN)
EXTDEPS[PLUGIN[plg]] = EXTDEPS[PLUGIN[plg]] " " PUPEXTDEPS[plg]
for(pkg in PKG)
print "<tr><th>" pkg "<td>" EXTDEPS[pkg]
print "</table>"
print "<p>File prefixes:<ul>"
print " <li> $P: plugin install dir (e.g. /usr/lib/librnd4/)"
if (!disable_C)
print " <li> $C: conf dir (e.g. /etc/librnd/)"
print " <li> $PREFIX: installation prefix (e.g. /usr)"
print "</ul>"
print "<h3> ./configure arguments </h3>"
print "--all=disable"
print "--all=disable" > "auto/Configure.args"
for(p in CFG_BUILDIN) {
print "--buildin-" p
print "--buildin-" p > "auto/Configure.args"
}
for(p in CFG_PLUGIN) {
print "--plugin-" p
print "--plugin-" p > "auto/Configure.args"
}
# generate the shell lib
print "# autogenerated shell lib; intended for ringdove app packages.sh" > "librnd_packages.sh"
print "\n# list of all packges" > "librnd_packages.sh"
s = ""
for(pkg in PKG)
s = s " " pkg
sub("^ ", "", s)
print "librnd_pkgs=" q s q > "librnd_packages.sh"
print "\n# plugin=package mapping" > "librnd_packages.sh"
print "librnd_plugins=" q > "librnd_packages.sh"
for(p in PLUGIN) {
short = p
sub("^librnd[0-9]*-", "", short)
plg = PLUGIN[p]
if (plg == "")
plg = "<NOT PACKAGED IN LIBRND>"
print short "=" plg > "librnd_packages.sh"
}
print q > "librnd_packages.sh"
}
'
echo '
</body>
</html>
') > packages.html
|