45b8a06f71
--HG-- extra : convert_revision : 46693a44c8f9f52ad2dde15707c0fd0a01631938
15 lines
309 B
Text
15 lines
309 B
Text
#
|
|
# This script builds the dot plugin list.
|
|
#
|
|
case "${ACTION}" in
|
|
post)
|
|
echo "Building dot(1) plugin list... "
|
|
if [ -f usr/lib/graphviz/config ]; then
|
|
rm -f usr/lib/graphviz/config
|
|
fi
|
|
if [ -f usr/lib/graphviz/config6 ]; then
|
|
rm -f usr/lib/graphviz/config6
|
|
fi
|
|
usr/bin/dot -c && echo "done."
|
|
;;
|
|
esac
|