#!/bin/sh

if test ! $(pwd) = "/"{
 
 echo "Configuring Chromium web browser..."

 echo '#!/bin/sh' > ./usr/local/bin/defaultbrowser
 echo 'exec chromium-browser "$@"' >> ./usr/local/bin/defaultbrowser
 chmod 755 ./usr/local/bin/defaultbrowser
 
 #if nothing suitable installed, do this...
 #note, helpsurfer not suitable, can't display my doc/index.html 
 setvar HTMLVIEWERFLAG = ''no''
 test $(find ./bin ./usr/bin -maxdepth 1 -type f -name netsurf) != "" && setvar HTMLVIEWERFLAG = ''yes''
 if test $HTMLVIEWERFLAG = "no"{
  echo '#!/bin/sh' > ./usr/local/bin/defaulthtmlviewer
  echo 'exec chromium-browser "$@"' >> ./usr/local/bin/defaulthtmlviewer
  chmod 755 ./usr/local/bin/defaulthtmlviewer
 }

}

#120621 Debian Squeeze: chromium is displaying in both the Network and Internet menu categories...
#note: this should really be fixed in the woof script 2createpackages.
if test -f ./usr/share/applications/chromium-browser.desktop{
 setvar cbPTN = ""s%^Categories=.*%Categories=WebBrowser%""
 sed -i -e $cbPTN ./usr/share/applications/chromium-browser.desktop
}