Installing XMMS on Ubuntu 8.04

Publicado por lugolu, Junio 16, 2008, 22:26:47

Tema anterior - Siguiente tema

0 Miembros y 1 Visitante están viendo este tema.

lugolu

After Gentoo and Slackware, now is the time for Ubuntu removing XMMS packages from their repo. How SAD! And for those who still want XMMS installed in their Ubuntu, here is the tip.

This this is originally written by Sartek and modified by me

Update your packages list

sudo apt-get update

Now install build-essential

sudo apt-get install build-essential

Alright, now we need to install the XMMS's dependencies

sudo apt-get install autotools-dev automake1.9 libtool gettext libasound2-dev libaudiofile-dev libgl1-mesa-dev libglib1.2-dev libgtk1.2-dev libesd0-dev libice-dev libmikmod2-dev libogg-dev libsm-dev libvorbis-dev libxxf86vm-dev libxml-dev libssl-dev

Now create a working directory and change into that directory

mkdir ~/build
cd ~/build

Download XMMS sources:
wget http://xmms.org/files/1.2.x/xmms-1.2.11.tar.gz

Extract the file and enter the extracted directory

tar xvf xmms-1.2.11.tar.gz
cd xmms-1.2.11/

Run configure with –prefix=/usr

./configure --prefix=/usr

In my case (Intel Pentium Core Duo), I've enable CFLAGS options for processor optimization

CFLAGS="-march=prescott -O2 -pipe -fomit-frame-pointer" ./configure --prefix=/usr --enable-gnutls=yes

You can simply use the command without the CFLAGS above, or if you want to optimize the pidgin to suit your processor, you can refer to Safe_Cflags page (Gentoo.. uhukk..)

Now compile it and install it

make
sudo make install

Now lets create the shortcut in your Gnome Menu

Right click on your Gnome Menu, and click on Edit Menu and follow these pictures:





Finish! now just simply remove your build (working) directory

cd ~
rm -dfr ~/build

Fuente

me dió vagancia traducirlo


Traducción

Tras Gentoo y Slackware ahora le tocó el turno a Ubuntu de remover los paquetes de XMMS de sus depósitos. ¡Qué pena! Y para quienes prefieran tenerlo instalado en su Ubuntu, aquí está la ayuda.

Esto fue inicialmente escrito por Sartek y ahora modificado por mí.

Actualizar la lista de paquetes

sudo apt-get update

Ahora instalar build-essential

sudo apt-get install build-essential

Bien, ahora se necesitan instalar las dependencias de XMMS

sudo apt-get install autotools-dev automake1.9 libtool gettext libasound2-dev libaudiofile-dev libgl1-mesa-dev libglib1.2-dev libgtk1.2-dev libesd0-dev libice-dev libmikmod2-dev libogg-dev libsm-dev libvorbis-dev libxxf86vm-dev libxml-dev libssl-dev

Ahora crear un directorio de trabajo y trabajar en él

mkdir ~/build
cd ~/build

Descargar los fuentes de XMMS:

wget http://xmms.org/files/1.2.x/xmms-1.2.11.tar.gz

Descomprimir el archivo y entrar en el directorio creado

tar xvf xmms-1.2.11.tar.gz
cd xmms-1.2.11/

Ejecutar configure con el parámetro –prefix=/usr

./configure --prefix=/usr

En micaso (Intel Pentium Core Duo) configuré a CFLAGS para lograr optimizaciones para ese procesador

CFLAGS="-march=prescott -O2 -pipe -fomit-frame-pointer" ./configure --prefix=/usr --enable-gnutls=yes

También se puede obviar la orden anterior o modificarla para que se ajuste a su procesador. (1)

Ahora compilar e instalarl it

make
sudo make install

Ahora crear el acceso directo en el Menú de Gnome

Hacer click con el botón derecho en el Menú de Gnome y luego click en Modificar Menú. Luego seguir las indicaciones en las imágenes:





Listo. Ahora borrar el directorio de trabajo. (2)

cd ~
rm -dfr ~/build

Fuente


Notas del traductor:
(1) Se puede consultar  http://gentoo-wiki.com/CFLAGS

(2) Yo aconsejo no borrar el directorio ya que si se desea desinstalar XMMS en él está el script adecuado para hacerlo (make  uninstall)

Mejor es borrar los archivos generados en la compilación y luego comprimir el directorio para que no ocupe lugar. entonces, las últimas dos órdenes (cd ~ y rm -dfr ~/build) por:

make clean
cd ..
tar cvjf xmms-1.2.11.tar.bz2 xmms-1.2.11/
rm -R xmms-1.2.11/

Saludos.
de todo un poco

lugolu

sino acá está el .deb
http://www.fileden.com/files/2008/1/8/1688149/Linux/xmms-1.2.10-i386.deb
de todo un poco