I followed this guide http://tuxarena.blogspot.de/2009/04/how ... ms-in.html with some Raspberry specific changes.
Basically we need 3 things, the xmms source and 2 libs: libgtk1.2 and libglib1.2. Since neither is available in the repository there is some manual work involved. Be patient while building, the raspberry is on heavy duty during those tasks
libglib1.2
Head over to http://ftp.gnome.org/pub/GNOME/sources/glib/1.2/ and grab the source as .tar.gz file. I took http://ftp.gnome.org/pub/GNOME/sources/ ... 2.5.tar.gz
Extract it and run
Code: Select all
./configure
make
sudo make install
sudo ldconfigHead over to http://ftp.gnome.org/pub/gnome/sources/gtk+/1.2/ and grab the source again as .tar.gz file. I chose http://ftp.gnome.org/pub/gnome/sources/ ... 2.5.tar.gz
You should check version numbers as libgtk needs a certain glib version. I just took the same and it worked.
Make sure you have Xorg developer packages installed otherwise you get an error about missing X header files. Test / install with:
Code: Select all
sudo apt-get install xorg-devCode: Select all
./configure
make
sudo make install
sudo ldconfigLast but not least head over to http://xmms.org/download.php and grab the XMMS 1.2.11 Source.
Extract and run
Code: Select all
./configure
make
sudo make install
sudo ldconfig