<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Xanda's Blog !~! &#187; xmms</title>
	<atom:link href="http://blog.xanda.org/tag/xmms/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.xanda.org</link>
	<description>Human Knowledge Belongs To The World.</description>
	<lastBuildDate>Tue, 13 Jul 2010 10:10:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Installing XMMS on Ubuntu 8.04</title>
		<link>http://blog.xanda.org/2008/05/25/installing-xmms-on-ubuntu-804/</link>
		<comments>http://blog.xanda.org/2008/05/25/installing-xmms-on-ubuntu-804/#comments</comments>
		<pubDate>Sun, 25 May 2008 15:00:47 +0000</pubDate>
		<dc:creator>xanda</dc:creator>
				<category><![CDATA[IT Related]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[ubtunu 8.04]]></category>
		<category><![CDATA[xmms]]></category>

		<guid isPermaLink="false">http://blog.xanda.org/?p=436</guid>
		<description><![CDATA[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 [...]]]></description>
			<content:encoded><![CDATA[<p>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.</p>
<p>This this is originally written by <a href="http://blog.sartek.net/2008/04/install-xmms-on-ubuntu-804-hardy-heron.html">Sartek</a> and modified by me</p>
<p>Update your packages list</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update</pre></div></div>

<p>Now install <a href="apt:build-essential">build-essential</a></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> build-essential</pre></div></div>

<p>Alright, now we need to install the XMMS&#8217;s dependencies</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> autotools-dev automake1.9 libtool <span style="color: #c20cb9; font-weight: bold;">gettext</span> 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</pre></div></div>

<p>Now create a working directory and change into that directory</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> ~<span style="color: #000000; font-weight: bold;">/</span>build
<span style="color: #7a0874; font-weight: bold;">cd</span> ~<span style="color: #000000; font-weight: bold;">/</span>build</pre></div></div>

<p>Download XMMS sources:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>xmms.org<span style="color: #000000; font-weight: bold;">/</span>files<span style="color: #000000; font-weight: bold;">/</span>1.2.x<span style="color: #000000; font-weight: bold;">/</span>xmms-1.2.11.tar.gz</pre></div></div>

<p>Extract the file and enter the extracted directory</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">tar</span> xvf xmms-1.2.11.tar.gz
<span style="color: #7a0874; font-weight: bold;">cd</span> xmms-1.2.11<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p>Run configure with &#8211;prefix=/usr</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--prefix</span>=<span style="color: #000000; font-weight: bold;">/</span>usr</pre></div></div>

<p><span style="color: #ff0000;">In my case</span> (Intel Pentium Core Duo), I&#8217;ve enable CFLAGS options for processor optimization</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">CFLAGS</span>=<span style="color: #ff0000;">&quot;-march=prescott -O2 -pipe -fomit-frame-pointer&quot;</span> .<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--prefix</span>=<span style="color: #000000; font-weight: bold;">/</span>usr <span style="color: #660033;">--enable-gnutls</span>=<span style="color: #c20cb9; font-weight: bold;">yes</span></pre></div></div>

<p>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 <a href="http://gentoo-wiki.com/Safe_Cflags">Safe_Cflags page</a> (Gentoo.. uhukk..)</p>
<p>Now compile it and install it</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">make</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>

<p>Now lets create the shortcut in your Gnome Menu</p>
<p>Right click on your Gnome Menu, and click on Edit Menu and follow these pictures:</p>
<p style="text-align: center;"><img class="aligncenter" src="http://img.xanda.org/galleries/xanda-install-xmms.png" alt="" /></p>
<p style="text-align: center;"><img class="aligncenter" src="http://img.xanda.org/galleries/xanda-install-xmms-2.png" alt="" /></p>
<p>Finish! now just simply remove your build (working) directory</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> ~
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-dfr</span> ~<span style="color: #000000; font-weight: bold;">/</span>build</pre></div></div>

<p>Haih&#8230; Event XMMS is not in the repo&#8230; seriously Ubuntu 8.04 is a mistake!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xanda.org/2008/05/25/installing-xmms-on-ubuntu-804/feed/</wfw:commentRss>
		<slash:comments>47</slash:comments>
		</item>
	</channel>
</rss>
