Magellan Linux

Annotation of /alx-src/branches/alxconf-060/plugins/egk-scm/plugin.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3470 - (hide annotations) (download) (as text)
Fri Apr 13 18:05:23 2012 UTC (12 years, 1 month ago) by niro
File MIME type: application/x-sh
File size: 1469 byte(s)
-renamed plugin egk-smc -> egk-scm
1 niro 3393 # this script gets included by config_sessions
2    
3 niro 3470 PLUGIN_NAME="egk-scm"
4 niro 3393 PLUGIN_MENUITEM_NAME="SUM_EGK"
5     PLUGIN_MENUITEM_EXEC="rdesktop"
6     PLUGIN_MENUITEM_PARAM='-r scard:"eHealth200 Terminal [Vendor Interface] 00 00"="SCM Microsystems Inc. Terminal0-Patient slot 0","eHealth200 Terminal [Vendor Interface] 00 01"="SCM Microsystems Inc. Terminal0-Doctor slot 0" 128.20.100.33'
7     PLUGIN_MENUITEM_WORKDIR=""
8     PLUGIN_MENUITEM_ICON=""
9    
10     PLUGIN_PACKAGES="libusb libusb-compat pcsc-lite pcsc-plugin-ehealth200"
11    
12     install_plugin()
13     {
14     local i
15     for i in ${PLUGIN_PACKAGES}
16     do
17     if [[ -z $(magequery -n ${i}) ]]
18     then
19     MAGE_BOOTSTRAP=true mage install ${i}
20     mage clean
21     fi
22     done
23     }
24    
25     setup_plugin()
26     {
27     return 0
28     }
29    
30     # create desktop buttons
31     create_menuitem()
32     {
33     # don't touch these echo, define variables above
34     echo "PLUGIN_MENUITEM_NAME=\"${PLUGIN_MENUITEM_NAME}\""
35     echo "PLUGIN_MENUITEM_EXEC=\"${PLUGIN_MENUITEM_EXEC}\""
36     echo "PLUGIN_MENUITEM_PARAM=\"${PLUGIN_MENUITEM_PARAM}\""
37     echo "PLUGIN_MENUITEM_WORKDIR=\"${PLUGIN_MENUITEM_WORKDIR}\""
38     echo "PLUGIN_MENUITEM_ICON=\"${PLUGIN_MENUITEM_ICON}\""
39     }
40    
41     uninstall_plugin()
42     {
43     local i
44     for i in ${PLUGIN_PACKAGES}
45     do
46     if [[ -n $(magequery -n ${i}) ]]
47     then
48     MAGE_BOOTSTRAP=true mage uninstall ${i}
49     mage clean
50     fi
51     done
52    
53     mage clean
54     }
55    
56     case $1 in
57     install) install_plugin ;;
58     setup) setup_plugin ;;
59     menuitem) create_menuitem ;;
60     uninstall) uninstall_plugin ;;
61     *) echo "PLUGIN '${PLUGIN_NAME}': unkown operation '$1'" ;;
62     esac