<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: How to install GiMP 2.5.2 on Ubuntu 8.4</title>
	<atom:link href="http://meetthegimp.org/how-to-install-gimp-252-on-ubuntu-84/feed/" rel="self" type="application/rss+xml" />
	<link>http://meetthegimp.org/how-to-install-gimp-252-on-ubuntu-84/</link>
	<description>A videopodcast about the free graphics program Gimp</description>
	<pubDate>Thu, 20 Nov 2008 21:25:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>By: maxpiut</title>
		<link>http://meetthegimp.org/how-to-install-gimp-252-on-ubuntu-84/#comment-42147</link>
		<dc:creator>maxpiut</dc:creator>
		<pubDate>Sat, 08 Nov 2008 23:30:41 +0000</pubDate>
		<guid isPermaLink="false">http://meetthegimp.org/?p=251#comment-42147</guid>
		<description>Hi people,

just want to introduce myself on meetthegimp.org, hope this is the right category for that purpose.

Kind regards,
Max</description>
		<content:encoded><![CDATA[<p>Hi people,</p>
<p>just want to introduce myself on meetthegimp.org, hope this is the right category for that purpose.</p>
<p>Kind regards,<br />
Max</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeff</title>
		<link>http://meetthegimp.org/how-to-install-gimp-252-on-ubuntu-84/#comment-7286</link>
		<dc:creator>jeff</dc:creator>
		<pubDate>Sun, 27 Jul 2008 00:13:47 +0000</pubDate>
		<guid isPermaLink="false">http://meetthegimp.org/?p=251#comment-7286</guid>
		<description>Ok, I found the correct script to compile and run the gimp 2.5.2 on my system:

You need to go to Applications -&#62; Terminal to open a terminal window.


1. Install the packages needed to compile programs:

* sudo apt-get install build-essential subversion libtool ruby


2. Install gimp dependencies:

* sudo apt-get build-dep gimp


3. Install latest BABL and GEGL libs from source (these libs were not installed in step 2 as the gimp package in the repo is not depending on them)

* svn co svn.gnome.org/svn/babl/trunk/ babl &#38;&#38; svn co svn.gnome.org/svn/gegl/trunk/ gegl


3.1 Install BABL:

* cd babl
* ./autogen.sh --prefix=/opt/gimp-2.5
* make (or "make -j 2" for multiple cores)
* sudo make install
* cd ..


3.2 Install GEGL:

* export PKG_CONFIG_PATH=/opt/gimp-2.5/lib/pkgconfig
* cd gegl
* ./autogen.sh --prefix=/opt/gimp-2.5
* make (or "make -j 2" for multiple cores)
* sudo make install
* cd ..


4. Make binaries, includes, libraries in /opt/gimp-2.5 available for use:

* export PATH=/opt/gimp-2.5/bin:$PATH &#38;&#38; export LD_LIBRARY_PATH=/opt/gimp-2.5/lib &#38;&#38; export PKG_CONFIG_PATH=/opt/gimp-2.5/lib/pkgconfig


5. Grab GIMP 2.5 tarball.

* wget ftp://ftp.gimp.org/pub/gimp/v2.5/gimp-2.5.2.tar.bz2


6. Extract and install latest GIMP:

* tar jxvf gimp-2.5.2.tar.bz2
* cd gimp-2.5.2
* ./configure --prefix=/opt/gimp-2.5
* make (or "make -j 2" for multiple cores)
* sudo make install


7. Enjoy your GIMP by running:

* /opt/gimp-2.5/bin/gimp-2.5


This works and runs on my ubuntu 8.04 using amd64 version and compiled for my dual core system!!! Woooo Hoooo!!! This is the whole compile so it should work on any ubuntu version.</description>
		<content:encoded><![CDATA[<p>Ok, I found the correct script to compile and run the gimp 2.5.2 on my system:</p>
<p>You need to go to Applications -&gt; Terminal to open a terminal window.</p>
<p>1. Install the packages needed to compile programs:</p>
<p>* sudo apt-get install build-essential subversion libtool ruby</p>
<p>2. Install gimp dependencies:</p>
<p>* sudo apt-get build-dep gimp</p>
<p>3. Install latest BABL and GEGL libs from source (these libs were not installed in step 2 as the gimp package in the repo is not depending on them)</p>
<p>* svn co svn.gnome.org/svn/babl/trunk/ babl &amp;&amp; svn co svn.gnome.org/svn/gegl/trunk/ gegl</p>
<p>3.1 Install BABL:</p>
<p>* cd babl<br />
* ./autogen.sh &#8211;prefix=/opt/gimp-2.5<br />
* make (or &#8220;make -j 2&#8243; for multiple cores)<br />
* sudo make install<br />
* cd ..</p>
<p>3.2 Install GEGL:</p>
<p>* export PKG_CONFIG_PATH=/opt/gimp-2.5/lib/pkgconfig<br />
* cd gegl<br />
* ./autogen.sh &#8211;prefix=/opt/gimp-2.5<br />
* make (or &#8220;make -j 2&#8243; for multiple cores)<br />
* sudo make install<br />
* cd ..</p>
<p>4. Make binaries, includes, libraries in /opt/gimp-2.5 available for use:</p>
<p>* export PATH=/opt/gimp-2.5/bin:$PATH &amp;&amp; export LD_LIBRARY_PATH=/opt/gimp-2.5/lib &amp;&amp; export PKG_CONFIG_PATH=/opt/gimp-2.5/lib/pkgconfig</p>
<p>5. Grab GIMP 2.5 tarball.</p>
<p>* wget <a href="ftp://ftp.gimp.org/pub/gimp/v2.5/gimp-2.5.2.tar.bz2" rel="nofollow">ftp://ftp.gimp.org/pub/gimp/v2.5/gimp-2.5.2.tar.bz2</a></p>
<p>6. Extract and install latest GIMP:</p>
<p>* tar jxvf gimp-2.5.2.tar.bz2<br />
* cd gimp-2.5.2<br />
* ./configure &#8211;prefix=/opt/gimp-2.5<br />
* make (or &#8220;make -j 2&#8243; for multiple cores)<br />
* sudo make install</p>
<p>7. Enjoy your GIMP by running:</p>
<p>* /opt/gimp-2.5/bin/gimp-2.5</p>
<p>This works and runs on my ubuntu 8.04 using amd64 version and compiled for my dual core system!!! Woooo Hoooo!!! This is the whole compile so it should work on any ubuntu version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rolf</title>
		<link>http://meetthegimp.org/how-to-install-gimp-252-on-ubuntu-84/#comment-6845</link>
		<dc:creator>Rolf</dc:creator>
		<pubDate>Sun, 20 Jul 2008 09:35:49 +0000</pubDate>
		<guid isPermaLink="false">http://meetthegimp.org/?p=251#comment-6845</guid>
		<description>Rumors are, that the wait will not be long. 

I am using Linux since 96/97 and have done a lot with it. But this cutting edge stuff is always a challenge for me.</description>
		<content:encoded><![CDATA[<p>Rumors are, that the wait will not be long. </p>
<p>I am using Linux since 96/97 and have done a lot with it. But this cutting edge stuff is always a challenge for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeff</title>
		<link>http://meetthegimp.org/how-to-install-gimp-252-on-ubuntu-84/#comment-6833</link>
		<dc:creator>jeff</dc:creator>
		<pubDate>Sun, 20 Jul 2008 03:19:37 +0000</pubDate>
		<guid isPermaLink="false">http://meetthegimp.org/?p=251#comment-6833</guid>
		<description>ack*! I don't even know where to start with this. Guess I'll just wait for a stable version....</description>
		<content:encoded><![CDATA[<p>ack*! I don&#8217;t even know where to start with this. Guess I&#8217;ll just wait for a stable version&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: billstei</title>
		<link>http://meetthegimp.org/how-to-install-gimp-252-on-ubuntu-84/#comment-6825</link>
		<dc:creator>billstei</dc:creator>
		<pubDate>Sat, 19 Jul 2008 21:49:46 +0000</pubDate>
		<guid isPermaLink="false">http://meetthegimp.org/?p=251#comment-6825</guid>
		<description>After compiling WebKit and then re-compiling Gimp 2.5.2 the Help window will open up, and it does look nice, being an exact duplicate of the online http://docs.gimp.org/en/ only the files are local.  But as soon as I go anywhere beyond the first front page it crashes.  So, a little work to be done yet.</description>
		<content:encoded><![CDATA[<p>After compiling WebKit and then re-compiling Gimp 2.5.2 the Help window will open up, and it does look nice, being an exact duplicate of the online <a href="http://docs.gimp.org/en/" rel="nofollow">http://docs.gimp.org/en/</a> only the files are local.  But as soon as I go anywhere beyond the first front page it crashes.  So, a little work to be done yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: billstei</title>
		<link>http://meetthegimp.org/how-to-install-gimp-252-on-ubuntu-84/#comment-6819</link>
		<dc:creator>billstei</dc:creator>
		<pubDate>Sat, 19 Jul 2008 18:37:58 +0000</pubDate>
		<guid isPermaLink="false">http://meetthegimp.org/?p=251#comment-6819</guid>
		<description>Okay, looks like the webkit library has to be installed in order for the help-browser plugin to get built.</description>
		<content:encoded><![CDATA[<p>Okay, looks like the webkit library has to be installed in order for the help-browser plugin to get built.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: billstei</title>
		<link>http://meetthegimp.org/how-to-install-gimp-252-on-ubuntu-84/#comment-6817</link>
		<dc:creator>billstei</dc:creator>
		<pubDate>Sat, 19 Jul 2008 18:28:44 +0000</pubDate>
		<guid isPermaLink="false">http://meetthegimp.org/?p=251#comment-6817</guid>
		<description>I see that all (most of ?) the plugins in 2.5.2 build except for help-browser.  Maybe the configure script is broken, or maybe the devs don't want that plugin built just yet.  Not sure.  But I've been trying to build the Gimp Help and install that into 2.5.2 because the Help supposedly looks a lot better now.</description>
		<content:encoded><![CDATA[<p>I see that all (most of ?) the plugins in 2.5.2 build except for help-browser.  Maybe the configure script is broken, or maybe the devs don&#8217;t want that plugin built just yet.  Not sure.  But I&#8217;ve been trying to build the Gimp Help and install that into 2.5.2 because the Help supposedly looks a lot better now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://meetthegimp.org/how-to-install-gimp-252-on-ubuntu-84/#comment-6810</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sat, 19 Jul 2008 17:32:02 +0000</pubDate>
		<guid isPermaLink="false">http://meetthegimp.org/?p=251#comment-6810</guid>
		<description>Everything works until I try to configure the GIMP 2.5.2 sources, It just thows me this error: configure: error: Test for GEGL failed. Please get it from http://gegl.org/. Anyone know how to fix this?</description>
		<content:encoded><![CDATA[<p>Everything works until I try to configure the GIMP 2.5.2 sources, It just thows me this error: configure: error: Test for GEGL failed. Please get it from <a href="http://gegl.org/" rel="nofollow">http://gegl.org/</a>. Anyone know how to fix this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: billstei</title>
		<link>http://meetthegimp.org/how-to-install-gimp-252-on-ubuntu-84/#comment-6803</link>
		<dc:creator>billstei</dc:creator>
		<pubDate>Sat, 19 Jul 2008 15:32:40 +0000</pubDate>
		<guid isPermaLink="false">http://meetthegimp.org/?p=251#comment-6803</guid>
		<description>Okay, well let me know if you want me to try making a video like that -- I did a test with gtk-recordmydesktop and it seems to be working.  Maybe if I told some good jokes during the boring parts... I don't know any, so I must be a geek.  Wait, that was a joke!</description>
		<content:encoded><![CDATA[<p>Okay, well let me know if you want me to try making a video like that &#8212; I did a test with gtk-recordmydesktop and it seems to be working.  Maybe if I told some good jokes during the boring parts&#8230; I don&#8217;t know any, so I must be a geek.  Wait, that was a joke!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rolf</title>
		<link>http://meetthegimp.org/how-to-install-gimp-252-on-ubuntu-84/#comment-6802</link>
		<dc:creator>Rolf</dc:creator>
		<pubDate>Sat, 19 Jul 2008 15:20:39 +0000</pubDate>
		<guid isPermaLink="false">http://meetthegimp.org/?p=251#comment-6802</guid>
		<description>I did that with 5.1 - but the terminal window is not that interesting for the non-geeks. The geeks do it them self. ;-)</description>
		<content:encoded><![CDATA[<p>I did that with 5.1 - but the terminal window is not that interesting for the non-geeks. The geeks do it them self. <img src='http://meetthegimp.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: billstei</title>
		<link>http://meetthegimp.org/how-to-install-gimp-252-on-ubuntu-84/#comment-6799</link>
		<dc:creator>billstei</dc:creator>
		<pubDate>Sat, 19 Jul 2008 14:21:40 +0000</pubDate>
		<guid isPermaLink="false">http://meetthegimp.org/?p=251#comment-6799</guid>
		<description>Rolf, what's taking you so long?  Ha, just kidding.  It occurred to me that this entire session with the terminal window, building Gimp 2.5.x, would make an interesting video... and then we would see if all that stuff I said actually works or not.</description>
		<content:encoded><![CDATA[<p>Rolf, what&#8217;s taking you so long?  Ha, just kidding.  It occurred to me that this entire session with the terminal window, building Gimp 2.5.x, would make an interesting video&#8230; and then we would see if all that stuff I said actually works or not.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
