Magellan Linux

Contents of /alx-src/branches/alxconf-060/plugins/firefox/plugin.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2779 - (show annotations) (download) (as text)
Fri Aug 26 11:51:09 2011 UTC (12 years, 8 months ago) by niro
File MIME type: application/x-sh
File size: 1341 byte(s)
-added plugin setup functionality to honor any settings change of a plugin via the webfrontend on every boot
1 # this script gets included by config_sessions
2
3 PLUGIN_NAME="firefox"
4 PLUGIN_MENUITEM_NAME="${PLUGIN_NAME}"
5 PLUGIN_MENUITEM_EXEC="${PLUGIN_NAME}"
6 PLUGIN_MENUITEM_PARAM=""
7 PLUGIN_MENUITEM_WORKDIR=""
8 PLUGIN_MENUITEM_ICON="${PLUGIN_NAME}.png"
9
10 PLUGIN_PACKAGES="glib2 atk pango cairo gdk-pixbuf gtk2+ sqlite unzip libidl nspr nss mozilla-firefox mozilla-firefox-i18n-de"
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