2009-04-17 01:44:15 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Updates the list of pango modules with pango-querymodules(1).
|
|
|
|
#
|
|
|
|
# Arguments: $1 = action [run/targets]
|
|
|
|
# $2 = target [post-install/post-remove]
|
|
|
|
# $3 = pkgname
|
|
|
|
# $4 = version
|
|
|
|
#
|
2009-05-19 02:13:58 +02:00
|
|
|
pango_bin=usr/bin/pango-querymodules
|
|
|
|
pango_modules=etc/pango/pango.modules
|
2009-04-17 01:44:15 +02:00
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
targets)
|
|
|
|
echo "post-install post-remove"
|
|
|
|
;;
|
|
|
|
run)
|
2009-05-19 10:42:57 +02:00
|
|
|
if [ "$2" = "post-remove" -a "${PKGNAME}" = "pango" ]; then
|
|
|
|
if [ -f ${pango_modules} ]; then
|
|
|
|
echo "Removing pango modules file..."
|
|
|
|
rm -f ${pango_modules}
|
|
|
|
fi
|
|
|
|
break
|
|
|
|
fi
|
2009-04-17 01:44:15 +02:00
|
|
|
case "$2" in
|
|
|
|
post-*)
|
|
|
|
if [ -x ${pango_bin} ]; then
|
2009-05-19 02:13:58 +02:00
|
|
|
echo "Updating pango modules file..."
|
2009-04-17 01:44:15 +02:00
|
|
|
${pango_bin} > ${pango_modules}
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
exit 0
|