<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://mediawiki.gnustep.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Thecat</id>
	<title>GNUstepWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://mediawiki.gnustep.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Thecat"/>
	<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php/Special:Contributions/Thecat"/>
	<updated>2026-07-26T22:19:59Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.7</generator>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Lynkeos.app&amp;diff=4545</id>
		<title>Lynkeos.app</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Lynkeos.app&amp;diff=4545"/>
		<updated>2007-03-11T23:30:33Z</updated>

		<summary type="html">&lt;p&gt;Thecat: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{stub}}&lt;br /&gt;
{{Application|&lt;br /&gt;
shortdescription = Lynkeos is an application dedicated to the processing of astronomical (mainly planetary) images taken with a webcam through a telescope. |&lt;br /&gt;
&lt;br /&gt;
currentversion = [http://christophe.jalady.free.fr/lynkeos/archive/Lynkeos-Linux-1.2.tgz 1.2] (MacOS only: [http://lynkeos.sourceforge.net/english/download.html 1.4])|&lt;br /&gt;
&lt;br /&gt;
releasedate = April 17, 2005  (1.4: Sep 02, 2006) |&lt;br /&gt;
&lt;br /&gt;
license = GPL |&lt;br /&gt;
&lt;br /&gt;
overview = You might want to take a look at the [http://lynkeos.sourceforge.net/english/help.html tutorial]. |&lt;br /&gt;
&lt;br /&gt;
features =  |&lt;br /&gt;
&lt;br /&gt;
maintainer = Christophe Jalady&lt;br /&gt;
(MacOS version: Jean-Etienne Lamiaud) |&lt;br /&gt;
&lt;br /&gt;
relatedlinks = *[http://christophe.jalady.free.fr/lynkeos GNUstep port]&lt;br /&gt;
*[http://lynkeos.sourceforge.net/ MacOS/Cocoa version] |&lt;br /&gt;
&lt;br /&gt;
category = [[Category:Science Applications]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Thecat</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=GNUstep_SVN_Installation_Guide&amp;diff=4492</id>
		<title>GNUstep SVN Installation Guide</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=GNUstep_SVN_Installation_Guide&amp;diff=4492"/>
		<updated>2007-03-05T22:35:30Z</updated>

		<summary type="html">&lt;p&gt;Thecat: /* Minimal configuration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is a step-by-step &amp;quot;Howto compile the last svn version of GNUstep&amp;quot;.&lt;br /&gt;
It's mainly a short summary of different documents available (and for some too out-of-date).&lt;br /&gt;
Wiki based, I hope this document will be the up-to-date installation guide.&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Three step are needed to build and install GNUstep from scratch :&lt;br /&gt;
* Building the Makefile package: this set up an environement to build everything else.&lt;br /&gt;
* Building library.&lt;br /&gt;
* Minimal configuration.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Building Makefile package ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn co http://svn.gna.org/svn/gnustep/tools/make/trunk/ gnustep-make&lt;br /&gt;
./configure --prefix=/usr/GNUstep&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Extra configuration needed every time you use &amp;quot;GNUstep&amp;quot; from a command-line:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
. /usr/GNUstep/System/Library/Makefiles/GNUstep.sh&lt;br /&gt;
or&lt;br /&gt;
. /usr/GNUstep/System/Library/Makefiles/GNUstep.csh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Building Library ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn co http://svn.gna.org/svn/gnustep/libs/base/trunk/ gnustep-base&lt;br /&gt;
./configure&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn co http://svn.gna.org/svn/gnustep/libs/gui/trunk/ gnustep-gui&lt;br /&gt;
./configure&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn co http://svn.gna.org/svn/gnustep/libs/back/trunk/ gnustep-back&lt;br /&gt;
./configure --enable-graphics=cairo --with-name=cairo --disable-glitz&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Minimal configuration ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
defaults write NSGlobalDomain GSBackend libgnustep-cairo&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You may also need to install package to use default font used by GNUstep. On Debian Etch, install &amp;lt;tt&amp;gt;ttf-bitstream-vera&amp;lt;/tt&amp;gt; package.&lt;/div&gt;</summary>
		<author><name>Thecat</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=GNUstep_SVN_Installation_Guide&amp;diff=4491</id>
		<title>GNUstep SVN Installation Guide</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=GNUstep_SVN_Installation_Guide&amp;diff=4491"/>
		<updated>2007-03-05T22:34:45Z</updated>

		<summary type="html">&lt;p&gt;Thecat: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is a step-by-step &amp;quot;Howto compile the last svn version of GNUstep&amp;quot;.&lt;br /&gt;
It's mainly a short summary of different documents available (and for some too out-of-date).&lt;br /&gt;
Wiki based, I hope this document will be the up-to-date installation guide.&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Three step are needed to build and install GNUstep from scratch :&lt;br /&gt;
* Building the Makefile package: this set up an environement to build everything else.&lt;br /&gt;
* Building library.&lt;br /&gt;
* Minimal configuration.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Building Makefile package ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn co http://svn.gna.org/svn/gnustep/tools/make/trunk/ gnustep-make&lt;br /&gt;
./configure --prefix=/usr/GNUstep&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Extra configuration needed every time you use &amp;quot;GNUstep&amp;quot; from a command-line:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
. /usr/GNUstep/System/Library/Makefiles/GNUstep.sh&lt;br /&gt;
or&lt;br /&gt;
. /usr/GNUstep/System/Library/Makefiles/GNUstep.csh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Building Library ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn co http://svn.gna.org/svn/gnustep/libs/base/trunk/ gnustep-base&lt;br /&gt;
./configure&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn co http://svn.gna.org/svn/gnustep/libs/gui/trunk/ gnustep-gui&lt;br /&gt;
./configure&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn co http://svn.gna.org/svn/gnustep/libs/back/trunk/ gnustep-back&lt;br /&gt;
./configure --enable-graphics=cairo --with-name=cairo --disable-glitz&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Minimal configuration ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
defaults write NSGlobalDomain GSBackend libgnustep-cairo&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You may also need to install package to use default font used by GNUstep. On Debian Etch, install ttf-bitstream-vera package.&lt;/div&gt;</summary>
		<author><name>Thecat</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=GNUstep_SVN_Installation_Guide&amp;diff=4490</id>
		<title>GNUstep SVN Installation Guide</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=GNUstep_SVN_Installation_Guide&amp;diff=4490"/>
		<updated>2007-03-05T22:33:14Z</updated>

		<summary type="html">&lt;p&gt;Thecat: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is a step-by-step &amp;quot;Howto compile the last svn version of GNUstep&amp;quot;.&lt;br /&gt;
It's mainly a short summary of different documents available (and for some too out-of-date).&lt;br /&gt;
Wiki based, I hope this document will be the up-to-date installation guide.&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Three step are needed to build and install GNUstep from scratch :&lt;br /&gt;
* Building the Makefile package: this set up an environement to build everything else.&lt;br /&gt;
* Building library.&lt;br /&gt;
* Minimal configuration.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Building Makefile package ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn co http://svn.gna.org/svn/gnustep/tools/make/trunk/ gnustep-make&lt;br /&gt;
./configure --prefix=/usr/GNUstep&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Extra configuration needed every time you use &amp;quot;GNUstep&amp;quot; from a command-line:&lt;br /&gt;
. /usr/GNUstep/System/Library/Makefiles/GNUstep.sh&lt;br /&gt;
or&lt;br /&gt;
source /usr/GNUstep/System/Library/Makefiles/GNUstep.csh&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Building Library ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn co http://svn.gna.org/svn/gnustep/libs/base/trunk/ gnustep-base&lt;br /&gt;
./configure&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn co http://svn.gna.org/svn/gnustep/libs/gui/trunk/ gnustep-gui&lt;br /&gt;
./configure&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn co http://svn.gna.org/svn/gnustep/libs/back/trunk/ gnustep-back&lt;br /&gt;
./configure --enable-graphics=cairo --with-name=cairo --disable-glitz&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Minimal configuration ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
defaults write NSGlobalDomain GSBackend libgnustep-cairo&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You may also need to install package to use default font used by GNUstep. On Debian Etch, install ttf-bitstream-vera package.&lt;/div&gt;</summary>
		<author><name>Thecat</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=GNUstep_SVN_Installation_Guide&amp;diff=4489</id>
		<title>GNUstep SVN Installation Guide</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=GNUstep_SVN_Installation_Guide&amp;diff=4489"/>
		<updated>2007-03-05T22:32:49Z</updated>

		<summary type="html">&lt;p&gt;Thecat: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is a step-by-step &amp;quot;Howto compile the last svn version of GNUstep&amp;quot;.&lt;br /&gt;
It's mainly a short summary of different documents available (and for some too out-of-date).&lt;br /&gt;
Wiki based, I hope this document will be the up-to-date installation guide.&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Three step are needed to build and install GNUstep from scratch :&lt;br /&gt;
* Building the Makefile package: this set up an environement to build everything else.&lt;br /&gt;
* Building library.&lt;br /&gt;
* Minimal configuration.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Building Makefile package: ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn co http://svn.gna.org/svn/gnustep/tools/make/trunk/ gnustep-make&lt;br /&gt;
./configure --prefix=/usr/GNUstep&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Extra configuration needed every time you use &amp;quot;GNUstep&amp;quot; from a command-line:&lt;br /&gt;
. /usr/GNUstep/System/Library/Makefiles/GNUstep.sh&lt;br /&gt;
or&lt;br /&gt;
source /usr/GNUstep/System/Library/Makefiles/GNUstep.csh&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Building Library: ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn co http://svn.gna.org/svn/gnustep/libs/base/trunk/ gnustep-base&lt;br /&gt;
./configure&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn co http://svn.gna.org/svn/gnustep/libs/gui/trunk/ gnustep-gui&lt;br /&gt;
./configure&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
svn co http://svn.gna.org/svn/gnustep/libs/back/trunk/ gnustep-back&lt;br /&gt;
./configure --enable-graphics=cairo --with-name=cairo --disable-glitz&lt;br /&gt;
make&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Minimal configuration: ==&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
defaults write NSGlobalDomain GSBackend libgnustep-cairo&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You may also need to install package to use default font used by GNUstep. On Debian Etch, install ttf-bitstream-vera package.&lt;/div&gt;</summary>
		<author><name>Thecat</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=User_Guides&amp;diff=4488</id>
		<title>User Guides</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=User_Guides&amp;diff=4488"/>
		<updated>2007-03-05T22:09:41Z</updated>

		<summary type="html">&lt;p&gt;Thecat: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is intended as a collection of guides for users.&lt;br /&gt;
&lt;br /&gt;
== Installing GNUstep ==&lt;br /&gt;
&lt;br /&gt;
Installation can be easy or complex, depending on the system you use. If you encounter problems that aren't discussed here, please [[Get Help|ask for help on the mailing lists]].&lt;br /&gt;
&lt;br /&gt;
* [http://www.gnustep.org/resources/documentation/User/GNUstep/gnustep-howto_toc.html GNUstep Installation] instructions ([http://www.gnustep.org/resources/documentation/User/GNUstep/gnustep-howto.pdf PDF], [http://www.gnustep.org/resources/documentation/GNUstep-HOWTO-Italian.text Italian])&lt;br /&gt;
* Make sure you also check the [[Platform_compatibility|platform-specific]] instructions as well.&lt;br /&gt;
* Comprehensive [http://gnustep.made-it.com/BuildGuide/ build guide] for GNUstep on GNU/Linux.&lt;br /&gt;
* [http://www.gnustep.org/resources/documentation/User/Gui/KeyboardSetup.html User Keyboard Setup]&lt;br /&gt;
* [http://www.gnustep.org/resources/documentation/User/Gui/LanguageSetup.html Setup for East Asian Languages]&lt;br /&gt;
* User Defaults ([http://www.gnustep.org/resources/documentation/User/Gui/DefaultsSummary.html GUI]) ([http://www.gnustep.org/resources/documentation/Developer/Back/General/DefaultsSummary.html Back])&lt;br /&gt;
* [[Wiki GNUstep installation guide.]]&lt;br /&gt;
&lt;br /&gt;
== Using GNUstep ==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Applications|User Applications]]&lt;br /&gt;
* [http://www.gnustep.org/resources/documentation/User/GNUstep/filesystem_toc.html Filesystem Layout] ([http://www.gnustep.org/resources/documentation/User/GNUstep/filesystem.pdf PDF])&lt;br /&gt;
* [[User_FAQ|GNUstep Users' FAQ]] ([http://www.gnustep.org/resources/documentation/User/GNUstep/userfaq.pdf PDF])&lt;br /&gt;
* [[Get Help|Mailing Lists, IRC and Newsgroups]]&lt;br /&gt;
&lt;br /&gt;
== Other Info ==&lt;br /&gt;
&lt;br /&gt;
* News and info:&lt;br /&gt;
** [http://www.gnustep.de/ GNUstep.de] - Alternative GNUstep info site, also in German&lt;br /&gt;
** [http://freshmeat.net/browse/806/?topic_id=806 Freshmeat]&lt;br /&gt;
* Projects:&lt;br /&gt;
** [http://www.nongnu.org/backbone/ Backbone] - GNUstep Desktop project&lt;br /&gt;
** [http://www.etoile-project.org/ Étoilé] - GNUstep based user environment&lt;br /&gt;
** [http://www.linuks.mine.nu/gnustep/ GNUstep Live CD Project] - based on Morphix&lt;br /&gt;
* Developer sites:&lt;br /&gt;
** [[For_Developers | Developers]] - List of developers&lt;br /&gt;
** [http://www.gnustep.it/ GNUstep.it] - Italian developer site&lt;br /&gt;
** [http://www.advogato.org/proj/GNUstep/ Advogato] - basic GNUstep project info and links to some developer diaries&lt;br /&gt;
** [http://www.collaboration-world.com/ Collaboration World] - home to GNUMail, Affiche and more&lt;br /&gt;
** [http://www.roard.com/docs/ GNUstep HelpCenter]&lt;br /&gt;
** [http://freshmeat.net/projects/gnustep-icons/ GNUstep Icons project]&lt;br /&gt;
* [[Success_Stories | GNUstep Success Stories]]&lt;br /&gt;
&lt;br /&gt;
== Stores ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.cafepress.com/openlogic &amp;quot;Openlogic&amp;quot; GNUstep store] - A portion of these proceeds go to the FSF and GNUstep.&lt;br /&gt;
* The GNUstep project does not sponsor or benefit from these items:&lt;br /&gt;
** [http://www.cafepress.com/gnustep &amp;quot;GNUstep&amp;quot; store]&lt;br /&gt;
** [http://www.cafepress.com/opengnustep &amp;quot;OPENGNUstep&amp;quot; store]&lt;/div&gt;</summary>
		<author><name>Thecat</name></author>
	</entry>
	<entry>
		<id>https://mediawiki.gnustep.org/index.php?title=Lynkeos.app&amp;diff=4487</id>
		<title>Lynkeos.app</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.gnustep.org/index.php?title=Lynkeos.app&amp;diff=4487"/>
		<updated>2007-03-05T21:50:00Z</updated>

		<summary type="html">&lt;p&gt;Thecat: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{stub}}&lt;br /&gt;
{{Application|&lt;br /&gt;
shortdescription = Lynkeos is an application dedicated to the processing of astronomical (mainly planetary) images taken with a webcam through a telescope. |&lt;br /&gt;
&lt;br /&gt;
currentversion = [http://lynkeos.sourceforge.net/english/download.html 1.4] |&lt;br /&gt;
&lt;br /&gt;
releasedate = Sep 02, 2006 |&lt;br /&gt;
&lt;br /&gt;
license = GPL |&lt;br /&gt;
&lt;br /&gt;
overview = You might want to take a look at the [http://lynkeos.sourceforge.net/english/help.html tutorial]. |&lt;br /&gt;
&lt;br /&gt;
features =  |&lt;br /&gt;
&lt;br /&gt;
maintainer = [mailto:j-etienne@users.sourceforge.net Jean-Etienne Lamiaud] |&lt;br /&gt;
&lt;br /&gt;
relatedlinks = [http://lynkeos.sourceforge.net/ Official Page] |&lt;br /&gt;
&lt;br /&gt;
category = [[Category:Science Applications]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Lynkeos is a Mac/Cocoa application.&lt;br /&gt;
 &lt;br /&gt;
A port under Linux/GNUStep has been done but only for the version 1.2.&lt;/div&gt;</summary>
		<author><name>Thecat</name></author>
	</entry>
</feed>