diff options
| author | James Meyer <james.meyer@operamail.com> | 2010-08-30 22:24:02 (GMT) | 
|---|---|---|
| committer | James Meyer <james.meyer@operamail.com> | 2010-08-30 22:24:02 (GMT) | 
| commit | c4bd4457b5d640e1c8f5afbca7cd54c53691e5fc (patch) | |
| tree | f4e4f7a91e1d9d90033fd99d89e5e26a2c144528 /abs/core/LinHES-config/mv_software.py | |
| parent | 0e7b327a1ae444233f1308a95420f70540ad74a3 (diff) | |
| download | linhes_pkgbuild-c4bd4457b5d640e1c8f5afbca7cd54c53691e5fc.zip linhes_pkgbuild-c4bd4457b5d640e1c8f5afbca7cd54c53691e5fc.tar.gz linhes_pkgbuild-c4bd4457b5d640e1c8f5afbca7cd54c53691e5fc.tar.bz2  | |
RSYNC CORE:
resync core-testing -> core
Signed-off-by: James Meyer <james.meyer@operamail.com>
Diffstat (limited to 'abs/core/LinHES-config/mv_software.py')
| -rwxr-xr-x | abs/core/LinHES-config/mv_software.py | 14 | 
1 files changed, 9 insertions, 5 deletions
diff --git a/abs/core/LinHES-config/mv_software.py b/abs/core/LinHES-config/mv_software.py index aabcf89..c0f5a5b 100755 --- a/abs/core/LinHES-config/mv_software.py +++ b/abs/core/LinHES-config/mv_software.py @@ -3,6 +3,10 @@ import logging, mv_common  import os, re  def setup_software(systemconfig, data_config): +    if  mv_common.read_config(mv_common.module_config,"software")  == False  : +        logging.info("____Skipping of software, config disabled____") +        return +      logging.info("____Start of Software install____")      postfix=''      if data_config.SYSTEMTYPE == "MythVantage": @@ -13,23 +17,23 @@ def setup_software(systemconfig, data_config):          postfix = "-release-fixes"        else:          postfix = "-svn" - +#This section is for MythVantage OS, not LINHES        default_disabled = ("mythphone", "mytharchive", "mythbrowser", "mythnews",                            "mythgame", "mythflix", "mythweather", -			  "mythzoneminder" ) +			  "mythzoneminder","mythnetvision" )        default_installed=("mythcontrols", "mythgallery", "mythmovies",                            "mythmusic", "mythsmolt", "mythvideo") -      other_pkg=("miro", "mednafen", "romdb", "xine", "dvdcss", "webmin" , "fuppes", "foldingathome", "mythappletrailers", "mythstream", "mythvodka") +      other_pkg=("miro", "mednafen", "romdb", "xine", "dvdcss", "webmin" , "fuppes", "foldingathome", "mythappletrailers", "mythstream", "mupen64")      else:        default_disabled = ("mythphone", "mytharchive", "mythbrowser", "mythnews",                            "mythgame", "mythflix", "mythweather",                            "mythappletrailers", "mythstream", "mythvodka", -			  "mythzoneminder" ) +			  "mythzoneminder","mythnetvision" )        default_installed=("mythcontrols", "mythgallery", "mythmovies",                            "mythmusic", "mythsmolt", "mythvideo") -      other_pkg=("miro", "mednafen", "romdb", "xine", "dvdcss", "webmin" , "fuppes", "foldingathome") +      other_pkg=("miro", "mednafen", "romdb", "xine", "dvdcss", "webmin" , "fuppes", "foldingathome","mupen64")      for pkg in default_disabled:          pkgname=pkg+postfix  | 
