This howto might not be necessary for long and I'd suggest first try to install ubuntu-restricted-extras package to get Gnash on your Intrepid install. However Gnash didn't work for me this way
when this tutorial has been made, so here's how I managed to have pretty darn well working Gnash on my ps3. Copy paste following to terminal.
*edit*
This method is likely already obsolete information. Check next post made by jmsFetch Gnash sources from here
http://ftp.gnu.org/pub/gnu/gnash/If wanted 0.8.4 version which is used in this tutorial here's direct commands to fetch it to your homefolder
Code:
cd
wget http://ftp.gnu.org/pub/gnu/gnash/0.8.4/gnash-0.8.4.tar.bz2
Extract it with tar or simply graphically by opening your homefolder right click file and select extract
Following commands install everything that compiling suggest. It's big download about 220MB's, but all isn't necessary. However I forgot to check out which of these packages are absolutely essential to get functional Gnash. I have all these installed.
Code:
sudo apt-get install libboost-dev libboost-thread-dev libagg-dev libsdl1.2-dev libgstreamer0.10-dev libatk1.0-dev libglib2.0-dev libpango1.0-dev libgtk2.0-dev libungif4-dev libjpeg-dev libxml2-dev gettext dejagnu swftools swfmill haxe mtasc libming-util libming-dev libcurl3-dev libpng12-dev
Now it's good time to read README file and INSTALL files to understand what's this all about, they are now in your homefolder/gnash-0.8.4 There are also instructions how to compile it for KDE.
Note that you can see what packages are required simply by moving to gnash directory and executing ./configure --enable-gui=gtk you will then see errors about missing packages. This can be done if you don't like to download everything that it suggests.
Now compiling should be done with following commands
Ubuntu and Xubuntu usersCode:
cd
cd gnash-0.8.4
./configure --enable-gui=gtk
make
sudo make install
make install-plugins
make command takes quite a time, but other commands are done fairly fast. Now if you didn't see any errors (you shouldn't) you should have quite fast and stable Gnash player that supports Firefox on your ps3.
Kubuntu usersCompiling to KDE might be bit different as I don't what packages are used when compiling for it, but you'll see dependencies by using already mentioned configure command. At least you should change
Code:
./configure --enable-gui=gtk
command to
Code:
./configure --enable-gui=kde
Other than that follow commands for Ubuntu and Xubuntu users.