diff -r e297491483ea -r a2c74eca6bf2 debian/canfestival-peak.postinst --- a/debian/canfestival-peak.postinst Mon Jul 27 16:35:12 2009 +0200 +++ b/debian/canfestival-peak.postinst Fri Aug 07 15:59:35 2009 +0200 @@ -5,31 +5,23 @@ set -e -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-remove' -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - DLL_LIST= CF_CONFIG=/usr/share/CanFestival-3/objdictgen/canfestival_config.py CF_CONFIG_TEMP=/usr/share/CanFestival-3/objdictgen/canfestival_config_ori.py + case "$1" in configure) ldconfig - cd /usr/lib - DLL_LIST= - FILES= + + # Find canfestival driver library in /usr/lib + cd /usr/lib for file in libcanfestival_can* do DLL_LIST="'$file',""$DLL_LIST" done + + # copy template config and add the DLL_LIST + # do this to display available canfestival plugin list choice in beremiz cat $CF_CONFIG_TEMP > $CF_CONFIG echo "DLL_LIST=[$DLL_LIST]" >> $CF_CONFIG ;;