These set of files has the changes needed to support the new location for the CASA install under the /usr directory.
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Name=CASA Manager
|
||||
Comment=Common Authenication Services Adapter
|
||||
Exec=/opt/novell/CASA/bin/CASAManager.sh
|
||||
Icon=/opt/novell/CASA/images/CASA_48.png
|
||||
Exec=/usr/bin/CASAManager.sh
|
||||
Icon=/usr/share/doc/packages/CASA/images/CASA_48.png
|
||||
Terminal=0
|
||||
Type=Application
|
||||
Categories=Application;Network;System
|
||||
|
||||
@@ -7,5 +7,5 @@ ARCH_LIB=
|
||||
fi
|
||||
|
||||
|
||||
export MONO_PATH=/opt/novell/CASA/lib$ARCH_LIB/
|
||||
mono /opt/novell/CASA/bin/CASAManager.exe &
|
||||
export MONO_PATH=/usr/lib$ARCH_LIB/
|
||||
mono /usr/bin/CASAManager.exe &
|
||||
|
||||
@@ -98,7 +98,7 @@ public class Common
|
||||
INDEX_NATIVEINFO_WALLETLASTACCESSEDTIME = 7;
|
||||
|
||||
|
||||
public static string LINUX_HELP_PATH = "file:///opt/novell/CASA/help/";
|
||||
public static string LINUX_HELP_PATH = "file:///usr/share/doc/packages/CASA/help/";
|
||||
public static string WINDOWS_HELP_PATH = "..\\help\\";
|
||||
|
||||
///##############################################################
|
||||
@@ -112,7 +112,7 @@ public class Common
|
||||
public static string CASAICONS = "../images/CASAicons.ico";
|
||||
#endif
|
||||
#if LINUX
|
||||
public static string CASAICONS = "/opt/novell/CASA/images/CASAicons.ico";
|
||||
public static string CASAICONS = "/usr/share/doc/packages/CASA/images/CASAicons.ico";
|
||||
#endif
|
||||
|
||||
///##############################################################
|
||||
@@ -167,7 +167,7 @@ public class Common
|
||||
if ( (128 == platform) || (4 == platform) )
|
||||
{
|
||||
IS_LINUX = true;
|
||||
GladeFile = "/opt/novell/CASA/images/casa.glade";
|
||||
GladeFile = "/usr/share/doc/packages/CASA/images/casa.glade";
|
||||
|
||||
if( !File.Exists(GladeFile) )
|
||||
{
|
||||
|
||||
@@ -79,7 +79,7 @@ namespace Novell.CASA.GUI
|
||||
Glade.XML gxmlTemp = new Glade.XML ("../images/casa.glade", "dialogLogin", null);
|
||||
#endif
|
||||
#if LINUX
|
||||
Glade.XML gxmlTemp = new Glade.XML ("/opt/novell/CASA/images/casa.glade", "dialogLogin", null);
|
||||
Glade.XML gxmlTemp = new Glade.XML ("/usr/share/doc/packages/CASA/images/casa.glade", "dialogLogin", null);
|
||||
#endif
|
||||
gxmlTemp.Autoconnect (this);
|
||||
//dialogLogin.TransientFor = windowMain;
|
||||
|
||||
Reference in New Issue
Block a user