In <[EMAIL PROTECTED]>, Pratik 
([EMAIL PROTECTED]) wrote:
>
>And the sea and installer archives fail to install Mozilla for me. On 
>the console I repeatedly get
>
>
>Gtk-CRITICAL **: file gtkprogress.c: line 518 
>(gtk_progress_set_percentage): assertion `percentage >= 0 && percentage 
><= 1.0' failed.
>
>Gtk-CRITICAL **: file gtkprogress.c: line 518 
>(gtk_progress_set_percentage): assertion `percentage >= 0 && percentage 
><= 1.0' failed.
>
>Please get mozilla-i686-pc-linux.tar.gz back!
>
>Pratik.
>

Same problem here.  I use the following script to install the nightlies, for
those who are interested.  It basically allows you to keep your 'production'
copy around and symlinks to the nightly automatically:

#!/bin/sh

# Mozilla nightly auto download and install
# Dependencies:
#       tar
#       wget
#       sed

# Path where actual nightly goes and master plugins are installed
INSTALLPATH='/usr/local'

# Name of mozilla installer tarball
MOZILLA='mozilla-i686-pc-linux-gnu-installer.tar.gz'

# Where to get it from
URL="http://ftp.mozilla.org/pub/mozilla/nightly/latest/$MOZILLA";

# Master plugins directory to copy from.  Located in $INSTALLPATH
PLUGINS='moz_plugin_master'

# Name of Directory to install to.  Will be purged first
NIGHTLY='mozilla_nightly'

# Full path of install, needed to re-write moz's config.ini file
FULLPATH="$INSTALLPATH/$NIGHTLY"
FULLPATH=$(echo $FULLPATH | sed 's/\//\\\//g')

# Name of symbolic link, created in $INSTALLPATH, that points to actual binary
LINK='mozilla'

# Where to put temporary junk
DOWNLOAD=$HOME



# -------------------- Don't Edit Below this Line ------------------

cd $INSTALLPATH || exit 
rm -rf $NIGHTLY 
rm -f $LINK 

cd $DOWNLOAD || exit 
rm -f $MOZILLA
rm -rf mozilla-installer
wget $URL
tar -zxvf $MOZILLA 
cd mozilla-installer
sed "s/^\(Default Location=\).*$/\1$FULLPATH/" config.ini > myconfig.ini
mv -f myconfig.ini config.ini
./mozilla-installer

cd $INSTALLPATH || exit 
ln -s $NIGHTLY $LINK 
cp -fd $PLUGINS/* $LINK/plugins



-- 
Greg Spath
[EMAIL PROTECTED]
http://freefall.homeip.net
irc://freefall.homeip.net/mtb

Reply via email to