<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://forum.ubuntu-fr.org/extern.php?action=feed&amp;tid=329902&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Forum Ubuntu-fr.org / Gimp 2.8 : "On essaye de faire le 2.8 avant le SOC 2010"]]></title>
		<link>http://forum.ubuntu-fr.org/viewtopic.php?id=329902</link>
		<description><![CDATA[Les sujets les plus récents dans Gimp 2.8 : "On essaye de faire le 2.8 avant le SOC 2010".]]></description>
		<lastBuildDate>Thu, 03 May 2012 22:05:14 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Réponse à&#160;:  Gimp 2.8 : "On essaye de faire le 2.8 avant le SOC 2010"]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=9097811#p9097811</link>
			<description><![CDATA[<div class="quotebox"><cite>Vu a écrit&#160;:</cite><blockquote><div><p>Pas possible, ils n&#039;auraient plus d&#039;idée et d&#039;inspiration pour l&#039;interface du bureau. <img src="http://forum.ubuntu-fr.org/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p></div></blockquote></div><p>Dans ce cas on va faire plus simple. Ubuntu en cli et nano. Après tout, pas besoin de logiciels compliqués pour changer un pixel sur une image (attention, en six mois, ça a pas l&#039;air comme ça mais, c&#039;est super chaud <img src="http://forum.ubuntu-fr.org/img/smilies/lol.png" width="15" height="15" alt="lol" />), un éditeur de texte, on change le fichier binaire d&#039;une lettre, et le tour est joué <img src="http://forum.ubuntu-fr.org/img/smilies/lol.png" width="15" height="15" alt="lol" /></p>]]></description>
			<author><![CDATA[dummy@example.com (Spitfire 95)]]></author>
			<pubDate>Thu, 03 May 2012 22:05:14 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=9097811#p9097811</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Gimp 2.8 : "On essaye de faire le 2.8 avant le SOC 2010"]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=9097741#p9097741</link>
			<description><![CDATA[<p>Pas possible, ils n&#039;auraient plus d&#039;idées et d&#039;inspirations pour l&#039;interface du bureau. <img src="http://forum.ubuntu-fr.org/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p>]]></description>
			<author><![CDATA[dummy@example.com (Vu)]]></author>
			<pubDate>Thu, 03 May 2012 22:02:32 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=9097741#p9097741</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Gimp 2.8 : "On essaye de faire le 2.8 avant le SOC 2010"]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=9095321#p9095321</link>
			<description><![CDATA[<p>Ya plus qu&#039;à forcer la design team de Canonical à passer à Ubuntu et à utiliser GIMP en remplacement de Mac et Adaube Toshop ^^</p>]]></description>
			<author><![CDATA[dummy@example.com (Spitfire 95)]]></author>
			<pubDate>Thu, 03 May 2012 19:10:00 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=9095321#p9095321</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Gimp 2.8 : "On essaye de faire le 2.8 avant le SOC 2010"]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=9094681#p9094681</link>
			<description><![CDATA[<p>Ah ! Je suis arrivé à compiler le plugin &quot;gimp-resynthesizer&quot; !<br />Un deb (amd64) ici : <a href="http://dl.free.fr/vtdzG2emD">http://dl.free.fr/vtdzG2emD</a></p><p>J&#039;ai utilisé la branche bit de Ketsuban. Pour compiler, j&#039;ai modifié le fichier &quot;configure.in&quot;, pour rajouter cette ligne :</p><div class="codebox"><pre><code>AC_CHECK_LIB(gthread-2.0, g_thread_init)</code></pre></div><p>Ce qui donne :</p><div class="codebox"><pre class="vscroll"><code>dnl Process this file with autoconf to produce a configure script.

dnl lkk 2011 Hacked from gimp-plugin-template configure.in
dnl changed name and added PluginScript/Makefile
AC_PREREQ(2.54)

dnl Name your plug-in here
dnl lkk 2011 Changed name and version digits
m4_define([plugin_name], [resynthesizer])

dnl These three define the plug-in version number
m4_define([plugin_major_version], [1])
m4_define([plugin_minor_version], [0])
m4_define([plugin_micro_version], [0])

m4_define([plugin_version],
          [plugin_major_version.plugin_minor_version.plugin_micro_version])

AC_INIT([plugin_name], [plugin_version])

AC_DEFINE(PLUGIN_NAME, PACKAGE_NAME, [Plug-In name])
AC_DEFINE(PLUGIN_VERSION, PACKAGE_VERSION, [Plug-In version])

AC_DEFINE(PLUGIN_MAJOR_VERSION, plugin_major_version, [Plug-In major version])
AC_DEFINE(PLUGIN_MINOR_VERSION, plugin_minor_version, [Plug-In minor version])
AC_DEFINE(PLUGIN_MICRO_VERSION, plugin_micro_version, [Plug-In micro version])

dnl lkk 2011 changed name
AC_CONFIG_SRCDIR([src/resynthesizer.c])
AM_CONFIG_HEADER(config.h)
AC_CHECK_LIB(gthread-2.0, g_thread_init)
AM_INIT_AUTOMAKE(no-define)

AC_ISC_POSIX
AC_PROG_CC
AM_PROG_CC_STDC
AC_HEADER_STDC


ACLOCAL=&quot;$ACLOCAL $ACLOCAL_FLAGS&quot;

AM_MAINTAINER_MODE


dnl Use -Wall if we have gcc.
changequote(,)dnl
if test &quot;x$GCC&quot; = &quot;xyes&quot;; then
  case &quot; $CFLAGS &quot; in
  *[\ \    ]-Wall[\ \    ]*) ;;
  *) CFLAGS=&quot;$CFLAGS -Wall&quot; ;;
  esac
fi
changequote([,])dnl


GIMP_REQUIRED_VERSION=2.2.0

PKG_CHECK_MODULES(GIMP,
  gimp-2.0 &gt;= $GIMP_REQUIRED_VERSION gimpui-2.0 &gt;= $GIMP_REQUIRED_VERSION)

AC_SUBST(GIMP_CFLAGS)
AC_SUBST(GIMP_LIBS)

GIMP_LIBDIR=`$PKG_CONFIG --variable=gimplibdir gimp-2.0`
AC_SUBST(GIMP_LIBDIR)


dnl i18n stuff

dnl lkk 2011 Changed name here
GETTEXT_PACKAGE=resynthesizer
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, &quot;$GETTEXT_PACKAGE&quot;,
                    [The gettext translation domain.])

dnl Add the languages which your application supports here.
ALL_LINGUAS=&quot;es ru&quot;

AC_PROG_INTLTOOL
AM_GLIB_GNU_GETTEXT

AC_CHECK_FUNCS(bind_textdomain_codeset)

dnl lkk 2011 I copied this from the main gimp configure.in
dnl where $PACKAGE is gimp and gimp_plugin_version is 2.0
dnl gimpplugindir=&quot;$libdir/$PACKAGE/gimp_plugin_version&quot;
gimpplugindir=&quot;$libdir/gimp/2.0&quot;
AC_SUBST(gimpplugindir)

LOCALEDIR=&#039;${datadir}/locale&#039;
DATADIR=&#039;${datadir}/plugin_name&#039;

AC_SUBST(LOCALEDIR)
AC_SUBST(DATADIR)


AC_MSG_CHECKING([if GTK+ is version 2.7.0 or newer])
if $PKG_CONFIG --atleast-version=2.7.0 gtk+-2.0; then
  have_gtk_2_7=yes
else
  have_gtk_2_7=no
fi
AC_MSG_RESULT($have_gtk_2_7)

if test &quot;x$have_gtk_2_7&quot; != &quot;xyes&quot;; then
  CPPFLAGS=&quot;$CPPFLAGS -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED&quot;
fi


AC_MSG_CHECKING([if GIMP is version 2.3.0 or newer])
if $PKG_CONFIG --atleast-version=2.3.0 gimp-2.0; then
  have_gimp_2_3=yes
else
  have_gimp_2_3=no
fi
AC_MSG_RESULT($have_gimp_2_3)

if test &quot;x$have_gimp_2_3&quot; != &quot;xyes&quot;; then
  CPPFLAGS=&quot;$CPPFLAGS -DGIMP_DISABLE_DEPRECATED&quot;
fi

dnl lkk July 2011
AC_PROG_RANLIB
dnl AC_PROG_LIBTOOL

dnl lkk 2011 Added PluginScripts/Makefile
AC_CONFIG_FILES([
Makefile
src/Makefile
po/Makefile.in
help/Makefile
help/en/Makefile
help/images/Makefile
PluginScripts/Makefile
])

AC_OUTPUT</code></pre></div><p>À faire <strong>avant le ./autogen.sh</strong>, pour ceux intéressés par la compilation de cet addon.</p><br /><p>Voilà voilà. Avec tout ces addons, gimp deviens une sorte de photoshop, mais en mieux, en libre et en gratuit ! <img src="http://forum.ubuntu-fr.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (compte supprimé)]]></author>
			<pubDate>Thu, 03 May 2012 18:40:35 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=9094681#p9094681</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Gimp 2.8 : "On essaye de faire le 2.8 avant le SOC 2010"]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=9093951#p9093951</link>
			<description><![CDATA[<p>Le paquet &quot;gimp-plugin-registry&quot; est incompatible avec gimp 2.8.<br />Bon, le seul truc qui m&#039;intéressait dedans, c&#039;était liquid rescale. J&#039;ai donc fait des paquets deb 64 bit pour precise, du plugin liquid rescale.<br />À utiliser à vos risques et périls (fait avec checkinstall), mais ça marche bien sinon. <img src="http://forum.ubuntu-fr.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p><a href="http://dl.free.fr/dPSQSe2kh">http://dl.free.fr/dPSQSe2kh</a><br /><a href="http://dl.free.fr/n59IvrkZx">http://dl.free.fr/n59IvrkZx</a></p><p>Ils disparaîtrons au bout de 30 jours, donc si quelqu&#039;un veut bien re-hoster...</p><p>Sinon, j&#039;ai testé la dernière version de GMI&#039;C (1.5.3 beta) avec la 2.8 : marche impec&#039;.<br />Mais je n&#039;arrive pas à compiler gimp-resynthetiser. <img src="http://forum.ubuntu-fr.org/img/smilies/sad.png" width="15" height="15" alt="sad" /></p><p>Edit : gimp-paint-studio (pack de brosses, entre autres) marche bien.<br />À télécharger ici (remplacer mettre les fichiers dans le dossier dézippé &quot;.gimp2.7&quot;, dans le dossier .gimp2.8 de votre dossier personnel) :<br /><a href="https://code.google.com/p/gps-gimp-paint-studio/">https://code.google.com/p/gps-gimp-paint-studio/</a></p><p>Edit 2 : j&#039;ai aussi fait un paquet 64 bit pour separate+, l&#039;addon qui permet à gimp de gérer les profils de couleurs (= addon anti-troll &quot;gimp saynul, çagèrepasleCMJN&quot;) :<br /><a href="http://dl.free.fr/kP0L0subg">http://dl.free.fr/kP0L0subg</a></p>]]></description>
			<author><![CDATA[dummy@example.com (compte supprimé)]]></author>
			<pubDate>Thu, 03 May 2012 18:03:18 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=9093951#p9093951</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Gimp 2.8 : "On essaye de faire le 2.8 avant le SOC 2010"]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=9091951#p9091951</link>
			<description><![CDATA[<div class="quotebox"><cite>david96 a écrit&#160;:</cite><blockquote><div><p><a href="http://forum.ubuntu-fr.org/viewtopic.php?pid=9090821">Gimp 2.8 est enfin là</a> <br />Enjoy ! <img src="http://forum.ubuntu-fr.org/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p></div></blockquote></div><p>Yeeessssss!!!! <img src="http://forum.ubuntu-fr.org/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (souen)]]></author>
			<pubDate>Thu, 03 May 2012 15:56:06 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=9091951#p9091951</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Gimp 2.8 : "On essaye de faire le 2.8 avant le SOC 2010"]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=9090831#p9090831</link>
			<description><![CDATA[<p><a href="http://forum.ubuntu-fr.org/viewtopic.php?pid=9090821">Gimp 2.8 est enfin là</a> <br />Enjoy ! <img src="http://forum.ubuntu-fr.org/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (david96)]]></author>
			<pubDate>Thu, 03 May 2012 14:25:18 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=9090831#p9090831</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Gimp 2.8 : "On essaye de faire le 2.8 avant le SOC 2010"]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=9053501#p9053501</link>
			<description><![CDATA[<p>Ok Vu Merci</p>]]></description>
			<author><![CDATA[dummy@example.com (souen)]]></author>
			<pubDate>Tue, 01 May 2012 11:11:04 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=9053501#p9053501</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Gimp 2.8 : "On essaye de faire le 2.8 avant le SOC 2010"]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=9052361#p9052361</link>
			<description><![CDATA[<p>Je pense que cela installera la version stable.</p>]]></description>
			<author><![CDATA[dummy@example.com (Vu)]]></author>
			<pubDate>Tue, 01 May 2012 10:16:44 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=9052361#p9052361</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Gimp 2.8 : "On essaye de faire le 2.8 avant le SOC 2010"]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=9050631#p9050631</link>
			<description><![CDATA[<p>Salut,<br />j&#039;ai ajouté le PPA pour Preicise pour avoir la 2.8 en bêta. Je voulais vous demander <br />si avec la mises à jour, cela m&#039;installera la version stable?...<br />ou je devrai réinstaller le programme?</p>]]></description>
			<author><![CDATA[dummy@example.com (souen)]]></author>
			<pubDate>Tue, 01 May 2012 08:53:13 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=9050631#p9050631</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Gimp 2.8 : "On essaye de faire le 2.8 avant le SOC 2010"]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=8977501#p8977501</link>
			<description><![CDATA[<p>PPA ajouté,<br />Menu -&gt; Fenêtres -&gt; Mode Fenêtres unique</p>]]></description>
			<author><![CDATA[dummy@example.com (Vu)]]></author>
			<pubDate>Fri, 27 Apr 2012 06:21:18 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=8977501#p8977501</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Gimp 2.8 : "On essaye de faire le 2.8 avant le SOC 2010"]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=8976971#p8976971</link>
			<description><![CDATA[<p>Finalement, vu que Precise est sorti et que Gimp 2.8 est encore en RC1 et que de plus, un PPA vient d&#039;être mis en ligne, je vais tout simplement devancer ma réinstallation.</p><p>Voici l&#039;article annonçant le PPA pour Oneiric et Precise : <a href="http://www.dailynux.fr/2012/04/13/installer-gimp-2-8-rc1-a-partir-dun-ppa-ubuntu-12-04/">http://www.dailynux.fr/2012/04/13/insta … ntu-12-04/</a></p>]]></description>
			<author><![CDATA[dummy@example.com (Ishimaru Chiaki)]]></author>
			<pubDate>Fri, 27 Apr 2012 03:43:22 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=8976971#p8976971</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Gimp 2.8 : "On essaye de faire le 2.8 avant le SOC 2010"]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=8897031#p8897031</link>
			<description><![CDATA[<p>Oui et c&#039;est d&#039;ailleurs le pourquoi de la distribution Fedora :<br /><a href="http://fr.wikipedia.org/wiki/Red_Hat#Le_projet_Fedora">http://fr.wikipedia.org/wiki/Red_Hat#Le_projet_Fedora</a></p>]]></description>
			<author><![CDATA[dummy@example.com (david96)]]></author>
			<pubDate>Fri, 20 Apr 2012 22:35:33 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=8897031#p8897031</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Gimp 2.8 : "On essaye de faire le 2.8 avant le SOC 2010"]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=8897011#p8897011</link>
			<description><![CDATA[<p>Elle sort dans un mois, cela devrait passer (et ils bénéficieront des retours des autres distribution qui seront sortis avant sur Gnome 3.4).</p>]]></description>
			<author><![CDATA[dummy@example.com (Vu)]]></author>
			<pubDate>Fri, 20 Apr 2012 22:31:53 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=8897011#p8897011</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Gimp 2.8 : "On essaye de faire le 2.8 avant le SOC 2010"]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=8894511#p8894511</link>
			<description><![CDATA[<p>Vi vi, (cf message de Ishimaru Chiaki #143).<br />J&#039;ai vu une nouvelle où cette version était sur la dernière distribution de Fedora je crois.</p><p>Édit : retrouvé la news : <a href="http://www.developpez.com/actu/43522/Fedora-17-beta-disponible-plus-puissant-et-flexible-avec-le-Kernel-Linux-3-3-1-et-GNOME-3-4-la-version-finale-annoncee-pour-le-17-mai/">http://www.developpez.com/actu/43522/Fe … le-17-mai/</a></p>]]></description>
			<author><![CDATA[dummy@example.com (david96)]]></author>
			<pubDate>Fri, 20 Apr 2012 19:48:02 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=8894511#p8894511</guid>
		</item>
	</channel>
</rss>
