mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 09:57:41 +00:00
27 lines
762 B
Bash
27 lines
762 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -euv
|
||
|
|
||
|
cd @srcdir@
|
||
|
|
||
|
if test "@HAVE_PLANTUML@" != "no" ; then
|
||
|
# uml-to-png
|
||
|
# shellcheck disable=SC2043
|
||
|
for uml in @umls@; do @PLANTUML@ -tpng "$uml"; done
|
||
|
# uml-to-svg
|
||
|
# shellcheck disable=SC2043
|
||
|
for uml in @umls@; do @PLANTUML@ -tsvg "$uml"; done
|
||
|
# format-svgs
|
||
|
if test "@HAVE_XMLLINT" != "no" ; then
|
||
|
# shellcheck disable=SC2043
|
||
|
for svg in @svgs@; do xmllint --format "$svg" > tmp; mv tmp "$svg"; done
|
||
|
else
|
||
|
printf 'WARNING: xmllint not found. SVGs not formatted.\n'
|
||
|
fi
|
||
|
# uml-to-txt
|
||
|
# shellcheck disable=SC2043
|
||
|
for uml in @tumls@; do @PLANTUML@ -ttxt "$uml"; done
|
||
|
# shellcheck disable=SC2043
|
||
|
for txt in @txts@; do sed 's/ *$//g' "$txt" > tmp; mv tmp "$txt"; done
|
||
|
fi
|