<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://test.amule.szerverem.hu/w/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://test.amule.szerverem.hu/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nil+Einne</id>
		<title>AMule Project FAQ - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://test.amule.szerverem.hu/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nil+Einne"/>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Special:Contributions/Nil_Einne"/>
		<updated>2026-04-05T16:59:42Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.23.3</generator>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2009-05-15T21:23:48Z</updated>
		
		<summary type="html">&lt;p&gt;Nil Einne: Adding back config info&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&lt;br /&gt;
[[Install-amule-freebsd|English]] | &lt;br /&gt;
[[Install-amule-freebsd-ru|Русский]]&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Install aMule 2.2.4 on [http://www.freebsd.org FreeBSD] 6.X, 7.X ==&lt;br /&gt;
Check that your /usr/ports is up-to-date, for example using portsnap:&lt;br /&gt;
           portsnap fetch update&lt;br /&gt;
&lt;br /&gt;
(you may need portsnap extract or portsnap fetch extract if not done before, you should be told at the end if this is necessary)&lt;br /&gt;
&lt;br /&gt;
Then, as the ports tree has been updated to 2.2.4, you should be able to just&lt;br /&gt;
&lt;br /&gt;
Install aMule&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/net/amule2&lt;br /&gt;
            make config&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
That should download and make all necessary dependencies etc.&lt;br /&gt;
&lt;br /&gt;
But if that doesn't work you can try (should also be useful for a newer version of aMule then 2.2.4 and the cvs):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Upgrade the FreeBSD 6.X (not needed on FreeBSD 7.X) flex release (2.5.4) with the new one (2.5.35):&lt;br /&gt;
&lt;br /&gt;
            cd  /usr/ports/textproc/flex&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
This installation didn't override the old /usr/bin/, but put a new release on /usr/local/bin/.&lt;br /&gt;
&lt;br /&gt;
Then we need to rename the old flex release:&lt;br /&gt;
&lt;br /&gt;
            mv /usr/bin/flex /usr/bin/flex.old&lt;br /&gt;
&lt;br /&gt;
And check your version with this command:&lt;br /&gt;
&lt;br /&gt;
            flex --version&lt;br /&gt;
&lt;br /&gt;
You should obtain: 2.5.35 (or newer)&lt;br /&gt;
&lt;br /&gt;
Install wxgtk28:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/x11-toolkits/wxgtk28-unicode/&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install cryptopp:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/security/cryptopp&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install GD:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/graphics/gd&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install GeoIP:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/net/GeoIP/&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Download the aMule 2.2.4 source code&lt;br /&gt;
[http://www.amule.org/files/files.php?cat=42 here].&lt;br /&gt;
&lt;br /&gt;
            tar -zxvf aMule-2.2.4.tar.bz2&lt;br /&gt;
            cd aMule-2.2.2/&lt;br /&gt;
&lt;br /&gt;
You need to edit the file src/Scanner.l and after the line:&lt;br /&gt;
            #include &amp;lt;wx/string.h&amp;gt;&lt;br /&gt;
Add the line:&lt;br /&gt;
            #include &amp;quot;Scanner.h.in&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Configure some environement variable, for bash user:&lt;br /&gt;
            export CPPFLAGS=&amp;quot;-I/usr/local/include&amp;quot;&lt;br /&gt;
            export LDFLAGS=&amp;quot;-L/usr/local/lib&amp;quot;&lt;br /&gt;
Or for csh user (default under FreeBSD):&lt;br /&gt;
            setenv CPPFLAGS &amp;quot;-I/usr/local/include&amp;quot;&lt;br /&gt;
            setenv LDFLAGS &amp;quot;-L/usr/local/lib&amp;quot;&lt;br /&gt;
Then start the compilation:&lt;br /&gt;
            &lt;br /&gt;
            ./configure --prefix=/home/'''user'''/aMule-2.2.4/ \&lt;br /&gt;
            --with-wx-config=/usr/local/bin/wxgtk2u-2.8-config --with-crypto-prefix=/usr/local/ \&lt;br /&gt;
            --disable-debug --with-curl-config=/usr/local/bin/curl-config --enable-webserver  \&lt;br /&gt;
            --enable-optimize --with-included-gettext --enable-amule-daemon --enable-amulecmd \&lt;br /&gt;
            --enable-cas --enable-alcc --enable-geoip&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' Check [[configure]]. Also, change '''user''' for your user name.&lt;br /&gt;
&lt;br /&gt;
            gmake&lt;br /&gt;
            gmake install&lt;br /&gt;
&lt;br /&gt;
And start it:&lt;br /&gt;
           ./amule-2.2.4/bin/amule &amp;amp;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Configuration info ==&lt;br /&gt;
&lt;br /&gt;
After successfully installing:&lt;br /&gt;
&lt;br /&gt;
The program directory can be found: (~./aMule/). Means as root:&lt;br /&gt;
&lt;br /&gt;
/root/.aMule/&lt;br /&gt;
&lt;br /&gt;
any other user:&lt;br /&gt;
&lt;br /&gt;
/usr/home/&amp;lt;username&amp;gt;/.aMule/&lt;br /&gt;
&lt;br /&gt;
amule.conf can be found directly in the program folder. The webserver config file has to be made:&lt;br /&gt;
&lt;br /&gt;
# amuleweb -w.&lt;br /&gt;
&lt;br /&gt;
and is called remote.conf&lt;/div&gt;</summary>
		<author><name>Nil Einne</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2009-05-15T21:20:45Z</updated>
		
		<summary type="html">&lt;p&gt;Nil Einne: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&lt;br /&gt;
[[Install-amule-freebsd|English]] | &lt;br /&gt;
[[Install-amule-freebsd-ru|Русский]]&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Install aMule 2.2.4 on [http://www.freebsd.org FreeBSD] 6.X, 7.X ==&lt;br /&gt;
Check that your /usr/ports is up-to-date, for example using portsnap:&lt;br /&gt;
           portsnap fetch update&lt;br /&gt;
&lt;br /&gt;
(you may need portsnap extract or portsnap fetch extract if not done before, you should be told at the end if this is necessary)&lt;br /&gt;
&lt;br /&gt;
Then, as the ports tree has been updated to 2.2.4, you should be able to just&lt;br /&gt;
&lt;br /&gt;
Install aMule&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/net/amule2&lt;br /&gt;
            make config&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
That should download and make all necessary dependencies etc.&lt;br /&gt;
&lt;br /&gt;
But if that doesn't work you can try (should also be useful for a newer version of aMule then 2.2.4 and the cvs):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Upgrade the FreeBSD 6.X (not needed on FreeBSD 7.X) flex release (2.5.4) with the new one (2.5.35):&lt;br /&gt;
&lt;br /&gt;
            cd  /usr/ports/textproc/flex&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
This installation didn't override the old /usr/bin/, but put a new release on /usr/local/bin/.&lt;br /&gt;
&lt;br /&gt;
Then we need to rename the old flex release:&lt;br /&gt;
&lt;br /&gt;
            mv /usr/bin/flex /usr/bin/flex.old&lt;br /&gt;
&lt;br /&gt;
And check your version with this command:&lt;br /&gt;
&lt;br /&gt;
            flex --version&lt;br /&gt;
&lt;br /&gt;
You should obtain: 2.5.35 (or newer)&lt;br /&gt;
&lt;br /&gt;
Install wxgtk28:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/x11-toolkits/wxgtk28-unicode/&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install cryptopp:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/security/cryptopp&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install GD:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/graphics/gd&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install GeoIP:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/net/GeoIP/&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Download the aMule 2.2.4 source code&lt;br /&gt;
[http://www.amule.org/files/files.php?cat=42 here].&lt;br /&gt;
&lt;br /&gt;
            tar -zxvf aMule-2.2.4.tar.bz2&lt;br /&gt;
            cd aMule-2.2.2/&lt;br /&gt;
&lt;br /&gt;
You need to edit the file src/Scanner.l and after the line:&lt;br /&gt;
            #include &amp;lt;wx/string.h&amp;gt;&lt;br /&gt;
Add the line:&lt;br /&gt;
            #include &amp;quot;Scanner.h.in&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Configure some environement variable, for bash user:&lt;br /&gt;
            export CPPFLAGS=&amp;quot;-I/usr/local/include&amp;quot;&lt;br /&gt;
            export LDFLAGS=&amp;quot;-L/usr/local/lib&amp;quot;&lt;br /&gt;
Or for csh user (default under FreeBSD):&lt;br /&gt;
            setenv CPPFLAGS &amp;quot;-I/usr/local/include&amp;quot;&lt;br /&gt;
            setenv LDFLAGS &amp;quot;-L/usr/local/lib&amp;quot;&lt;br /&gt;
Then start the compilation:&lt;br /&gt;
            &lt;br /&gt;
            ./configure --prefix=/home/'''user'''/aMule-2.2.4/ \&lt;br /&gt;
            --with-wx-config=/usr/local/bin/wxgtk2u-2.8-config --with-crypto-prefix=/usr/local/ \&lt;br /&gt;
            --disable-debug --with-curl-config=/usr/local/bin/curl-config --enable-webserver  \&lt;br /&gt;
            --enable-optimize --with-included-gettext --enable-amule-daemon --enable-amulecmd \&lt;br /&gt;
            --enable-cas --enable-alcc --enable-geoip&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' Check [[configure]]. Also, change '''user''' for your user name.&lt;br /&gt;
&lt;br /&gt;
            gmake&lt;br /&gt;
            gmake install&lt;br /&gt;
&lt;br /&gt;
And start it:&lt;br /&gt;
           ./amule-2.2.4/bin/amule &amp;amp;&lt;/div&gt;</summary>
		<author><name>Nil Einne</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2009-05-15T21:20:06Z</updated>
		
		<summary type="html">&lt;p&gt;Nil Einne: /* Install aMule 2.2.4 on [http://www.freebsd.org FreeBSD] 6.X, 7.X */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&lt;br /&gt;
[[Install-amule-freebsd|English]] | &lt;br /&gt;
[[Install-amule-freebsd-ru|Русский]]&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Install aMule 2.2.4 on [http://www.freebsd.org FreeBSD] 6.X, 7.X ==&lt;br /&gt;
Check that your /usr/ports is up-to-date, for example using portsnap:&lt;br /&gt;
           portsnap fetch update&lt;br /&gt;
&lt;br /&gt;
(you may need portsnap extract or portsnap fetch extract if not done before, you should be told at the end if this is necessary)&lt;br /&gt;
&lt;br /&gt;
Then, as the ports tree has been updated to 2.2.4, you should be able to just&lt;br /&gt;
&lt;br /&gt;
Install aMule&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/net/amule2&lt;br /&gt;
            make config&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If that doesn't work you can try (should also be useful for a newer version of aMule then 2.2.4 and the cvs):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Upgrade the FreeBSD 6.X (not needed on FreeBSD 7.X) flex release (2.5.4) with the new one (2.5.35):&lt;br /&gt;
&lt;br /&gt;
            cd  /usr/ports/textproc/flex&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
This installation didn't override the old /usr/bin/, but put a new release on /usr/local/bin/.&lt;br /&gt;
&lt;br /&gt;
Then we need to rename the old flex release:&lt;br /&gt;
&lt;br /&gt;
            mv /usr/bin/flex /usr/bin/flex.old&lt;br /&gt;
&lt;br /&gt;
And check your version with this command:&lt;br /&gt;
&lt;br /&gt;
            flex --version&lt;br /&gt;
&lt;br /&gt;
You should obtain: 2.5.35 (or newer)&lt;br /&gt;
&lt;br /&gt;
Install wxgtk28:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/x11-toolkits/wxgtk28-unicode/&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install cryptopp:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/security/cryptopp&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install GD:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/graphics/gd&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install GeoIP:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/net/GeoIP/&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Download the aMule 2.2.4 source code&lt;br /&gt;
[http://www.amule.org/files/files.php?cat=42 here].&lt;br /&gt;
&lt;br /&gt;
            tar -zxvf aMule-2.2.4.tar.bz2&lt;br /&gt;
            cd aMule-2.2.2/&lt;br /&gt;
&lt;br /&gt;
You need to edit the file src/Scanner.l and after the line:&lt;br /&gt;
            #include &amp;lt;wx/string.h&amp;gt;&lt;br /&gt;
Add the line:&lt;br /&gt;
            #include &amp;quot;Scanner.h.in&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Configure some environement variable, for bash user:&lt;br /&gt;
            export CPPFLAGS=&amp;quot;-I/usr/local/include&amp;quot;&lt;br /&gt;
            export LDFLAGS=&amp;quot;-L/usr/local/lib&amp;quot;&lt;br /&gt;
Or for csh user (default under FreeBSD):&lt;br /&gt;
            setenv CPPFLAGS &amp;quot;-I/usr/local/include&amp;quot;&lt;br /&gt;
            setenv LDFLAGS &amp;quot;-L/usr/local/lib&amp;quot;&lt;br /&gt;
Then start the compilation:&lt;br /&gt;
            &lt;br /&gt;
            ./configure --prefix=/home/'''user'''/aMule-2.2.4/ \&lt;br /&gt;
            --with-wx-config=/usr/local/bin/wxgtk2u-2.8-config --with-crypto-prefix=/usr/local/ \&lt;br /&gt;
            --disable-debug --with-curl-config=/usr/local/bin/curl-config --enable-webserver  \&lt;br /&gt;
            --enable-optimize --with-included-gettext --enable-amule-daemon --enable-amulecmd \&lt;br /&gt;
            --enable-cas --enable-alcc --enable-geoip&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' Check [[configure]]. Also, change '''user''' for your user name.&lt;br /&gt;
&lt;br /&gt;
            gmake&lt;br /&gt;
            gmake install&lt;br /&gt;
&lt;br /&gt;
And start it:&lt;br /&gt;
           ./amule-2.2.4/bin/amule &amp;amp;&lt;/div&gt;</summary>
		<author><name>Nil Einne</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2009-05-15T21:16:42Z</updated>
		
		<summary type="html">&lt;p&gt;Nil Einne: Ports tree now has 2.2.4 so can just get it from there&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&lt;br /&gt;
[[Install-amule-freebsd|English]] | &lt;br /&gt;
[[Install-amule-freebsd-ru|Русский]]&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Install aMule 2.2.4 on [http://www.freebsd.org FreeBSD] 6.X, 7.X ==&lt;br /&gt;
Check that your /usr/ports is up-to-date, for example using portsnap:&lt;br /&gt;
           portsnap fetch update&lt;br /&gt;
&lt;br /&gt;
(you may need portsnap extract or portsnap fetch extract if not done before, you should be told at the end if this is necessary)&lt;br /&gt;
&lt;br /&gt;
Upgrade the FreeBSD 6.X (not needed on FreeBSD 7.X) flex release (2.5.4) with the new one (2.5.35):&lt;br /&gt;
&lt;br /&gt;
            cd  /usr/ports/textproc/flex&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
This installation didn't override the old /usr/bin/, but put a new release on /usr/local/bin/.&lt;br /&gt;
&lt;br /&gt;
Then we need to rename the old flex release:&lt;br /&gt;
&lt;br /&gt;
            mv /usr/bin/flex /usr/bin/flex.old&lt;br /&gt;
&lt;br /&gt;
And check your version with this command:&lt;br /&gt;
&lt;br /&gt;
            flex --version&lt;br /&gt;
&lt;br /&gt;
You should obtain: 2.5.35 (or newer)&lt;br /&gt;
&lt;br /&gt;
Install wxgtk28:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/x11-toolkits/wxgtk28-unicode/&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install cryptopp:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/security/cryptopp&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install GD:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/graphics/gd&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install GeoIP:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/net/GeoIP/&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
As the ports tree has been updated to 2.2.4, you should be able to just&lt;br /&gt;
&lt;br /&gt;
Install aMule&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/net/amule2&lt;br /&gt;
            make config&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If that doesn't work you can try:&lt;br /&gt;
&lt;br /&gt;
Download the aMule 2.2.4 source code&lt;br /&gt;
[http://www.amule.org/files/files.php?cat=42 here].&lt;br /&gt;
&lt;br /&gt;
            tar -zxvf aMule-2.2.4.tar.bz2&lt;br /&gt;
            cd aMule-2.2.2/&lt;br /&gt;
&lt;br /&gt;
You need to edit the file src/Scanner.l and after the line:&lt;br /&gt;
            #include &amp;lt;wx/string.h&amp;gt;&lt;br /&gt;
Add the line:&lt;br /&gt;
            #include &amp;quot;Scanner.h.in&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Configure some environement variable, for bash user:&lt;br /&gt;
            export CPPFLAGS=&amp;quot;-I/usr/local/include&amp;quot;&lt;br /&gt;
            export LDFLAGS=&amp;quot;-L/usr/local/lib&amp;quot;&lt;br /&gt;
Or for csh user (default under FreeBSD):&lt;br /&gt;
            setenv CPPFLAGS &amp;quot;-I/usr/local/include&amp;quot;&lt;br /&gt;
            setenv LDFLAGS &amp;quot;-L/usr/local/lib&amp;quot;&lt;br /&gt;
Then start the compilation:&lt;br /&gt;
            &lt;br /&gt;
            ./configure --prefix=/home/'''user'''/aMule-2.2.4/ \&lt;br /&gt;
            --with-wx-config=/usr/local/bin/wxgtk2u-2.8-config --with-crypto-prefix=/usr/local/ \&lt;br /&gt;
            --disable-debug --with-curl-config=/usr/local/bin/curl-config --enable-webserver  \&lt;br /&gt;
            --enable-optimize --with-included-gettext --enable-amule-daemon --enable-amulecmd \&lt;br /&gt;
            --enable-cas --enable-alcc --enable-geoip&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' Check [[configure]]. Also, change '''user''' for your user name.&lt;br /&gt;
&lt;br /&gt;
            gmake&lt;br /&gt;
            gmake install&lt;br /&gt;
&lt;br /&gt;
And start it:&lt;br /&gt;
           ./amule-2.2.4/bin/amule &amp;amp;&lt;/div&gt;</summary>
		<author><name>Nil Einne</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Talk:Install-amule-freebsd</id>
		<title>Talk:Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Talk:Install-amule-freebsd"/>
				<updated>2009-05-14T21:27:15Z</updated>
		
		<summary type="html">&lt;p&gt;Nil Einne: /* GD */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Can we delete theses old chapters ?&lt;br /&gt;
&lt;br /&gt;
1.3 Install aMule CVS on FreeBSD 5.3&lt;br /&gt;
&lt;br /&gt;
1.4 Manual compilation&lt;br /&gt;
&lt;br /&gt;
1.4.1 Requirements&lt;br /&gt;
&lt;br /&gt;
1.4.2 Configure&lt;br /&gt;
&lt;br /&gt;
1.4.3 Make&lt;br /&gt;
&lt;br /&gt;
1.4.4 Use it&lt;br /&gt;
&lt;br /&gt;
1.5 The aMule 2.0.0 port&lt;br /&gt;
&lt;br /&gt;
1.6 The aMule 2.0.0-rc7 port&lt;br /&gt;
&lt;br /&gt;
1.7 The aMule 2.0.0-rc6 port&lt;br /&gt;
&lt;br /&gt;
1.8 The aMule 2.0.0-rc4a ports&lt;br /&gt;
&lt;br /&gt;
1.9 The aMule 2.0.0-rc3 port&lt;br /&gt;
&lt;br /&gt;
1.10 Installing non-official ports&lt;br /&gt;
&lt;br /&gt;
1.11 Compilation problems&lt;br /&gt;
&lt;br /&gt;
1.11.1 Patch 1&lt;br /&gt;
&lt;br /&gt;
1.11.2 Patch 2&lt;br /&gt;
&lt;br /&gt;
I think we can. If you do that, could you add the verison-tag at the end of the article?&lt;br /&gt;
&lt;br /&gt;
=&amp;gt; Ok, old chapter removed. But how to add a version tag ?&lt;br /&gt;
&lt;br /&gt;
Just Add ==Version== and the following infos at the end. See bottom of http://www.amule.org/wiki/index.php/HowTo_Compile_In_Debian&lt;br /&gt;
&lt;br /&gt;
== GD ==&lt;br /&gt;
&lt;br /&gt;
What options are necessary for GD? My guess is X11 if you want the gui/monolithic. What about xpm or fontconfig? I believe from memory iconv is necessary but again not sure. (I just selected all although it turned out I already had GD, I installed every single package available on the FreeBSD 7.2 DVD except for conflicting ones) [[User:Nil Einne|Nil Einne]] 23:24, 14 May 2009 (CEST)&lt;/div&gt;</summary>
		<author><name>Nil Einne</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2009-05-14T21:25:19Z</updated>
		
		<summary type="html">&lt;p&gt;Nil Einne: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&lt;br /&gt;
[[Install-amule-freebsd|English]] | &lt;br /&gt;
[[Install-amule-freebsd-ru|Русский]]&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Install aMule 2.2.4 on [http://www.freebsd.org FreeBSD] 6.X, 7.X ==&lt;br /&gt;
Check that your /usr/ports is up-to-date, for example using portsnap:&lt;br /&gt;
           portsnap fetch update&lt;br /&gt;
&lt;br /&gt;
(you may need portsnap extract then portsnap update)&lt;br /&gt;
&lt;br /&gt;
Upgrade the FreeBSD 6.X (not needed on FreeBSD 7.X) flex release (2.5.4) with the new one (2.5.35):&lt;br /&gt;
&lt;br /&gt;
            cd  /usr/ports/textproc/flex&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
This installation didn't override the old /usr/bin/, but put a new release on /usr/local/bin/.&lt;br /&gt;
&lt;br /&gt;
Then we need to rename the old flex release:&lt;br /&gt;
&lt;br /&gt;
            mv /usr/bin/flex /usr/bin/flex.old&lt;br /&gt;
&lt;br /&gt;
And check your version with this command:&lt;br /&gt;
&lt;br /&gt;
            flex --version&lt;br /&gt;
&lt;br /&gt;
You should obtain: 2.5.35 (or newer)&lt;br /&gt;
&lt;br /&gt;
Install wxgtk28:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/x11-toolkits/wxgtk28-unicode/&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install cryptopp:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/security/cryptopp&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install GD:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/graphics/gd&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install GeoIP:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/net/GeoIP/&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Download the aMule 2.2.4 source code&lt;br /&gt;
[http://www.amule.org/files/files.php?cat=42 here].&lt;br /&gt;
&lt;br /&gt;
            tar -zxvf aMule-2.2.4.tar.bz2&lt;br /&gt;
            cd aMule-2.2.2/&lt;br /&gt;
&lt;br /&gt;
You need to edit the file src/Scanner.l and after the line:&lt;br /&gt;
            #include &amp;lt;wx/string.h&amp;gt;&lt;br /&gt;
Add the line:&lt;br /&gt;
            #include &amp;quot;Scanner.h.in&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Configure some environement variable, for bash user:&lt;br /&gt;
            export CPPFLAGS=&amp;quot;-I/usr/local/include&amp;quot;&lt;br /&gt;
            export LDFLAGS=&amp;quot;-L/usr/local/lib&amp;quot;&lt;br /&gt;
Or for csh user (default under FreeBSD):&lt;br /&gt;
            setenv CPPFLAGS &amp;quot;-I/usr/local/include&amp;quot;&lt;br /&gt;
            setenv LDFLAGS &amp;quot;-L/usr/local/lib&amp;quot;&lt;br /&gt;
Then start the compilation:&lt;br /&gt;
            &lt;br /&gt;
            ./configure --prefix=/home/'''user'''/aMule-2.2.4/ \&lt;br /&gt;
            --with-wx-config=/usr/local/bin/wxgtk2u-2.8-config --with-crypto-prefix=/usr/local/ \&lt;br /&gt;
            --disable-debug --with-curl-config=/usr/local/bin/curl-config --enable-webserver  \&lt;br /&gt;
            --enable-optimize --with-included-gettext --enable-amule-daemon --enable-amulecmd \&lt;br /&gt;
            --enable-cas --enable-alcc --enable-geoip&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' Check [[configure]]. Also, change '''user''' for your user name.&lt;br /&gt;
&lt;br /&gt;
            gmake&lt;br /&gt;
            gmake install&lt;br /&gt;
&lt;br /&gt;
And start it:&lt;br /&gt;
           ./amule-2.2.4/bin/amule &amp;amp;&lt;br /&gt;
&lt;br /&gt;
==  Installing 2.2.3  ==&lt;br /&gt;
&lt;br /&gt;
The amule port can be found at:&lt;br /&gt;
&lt;br /&gt;
/usr/ports/net-p2p/amule2&lt;br /&gt;
&lt;br /&gt;
I prefer the installation of applications on freebsd through the ports collection. Assumeing you're useing freebsd 6.2, as root:&lt;br /&gt;
&lt;br /&gt;
# cd /usr/ports/net-p2p/amule2&lt;br /&gt;
# make install clean&lt;br /&gt;
&lt;br /&gt;
In the next menu select deamon if you've plans to remote control aMule, or leave the options as they are, press OK and wait for compilation. The time needed depends on the depended applications that has te be installed. The program directory can be found: (~./aMule/). Means as root:&lt;br /&gt;
&lt;br /&gt;
/root/.aMule/&lt;br /&gt;
&lt;br /&gt;
any other user:&lt;br /&gt;
&lt;br /&gt;
/usr/home/&amp;lt;username&amp;gt;/.aMule/&lt;br /&gt;
&lt;br /&gt;
amule.conf can be found directly in the program folder. The webserver config file has to be made:&lt;br /&gt;
&lt;br /&gt;
# amuleweb -w.&lt;br /&gt;
&lt;br /&gt;
and is called remote.conf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The stable [[aMule]] is version 2.1.3.&lt;br /&gt;
&lt;br /&gt;
We wanna stay current? Help test? Help debug? Continue with this article to learn how to install/compile aMule on your system.&lt;/div&gt;</summary>
		<author><name>Nil Einne</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Talk:Install-amule-freebsd</id>
		<title>Talk:Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Talk:Install-amule-freebsd"/>
				<updated>2009-05-14T21:24:58Z</updated>
		
		<summary type="html">&lt;p&gt;Nil Einne: /* GD */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Can we delete theses old chapters ?&lt;br /&gt;
&lt;br /&gt;
1.3 Install aMule CVS on FreeBSD 5.3&lt;br /&gt;
&lt;br /&gt;
1.4 Manual compilation&lt;br /&gt;
&lt;br /&gt;
1.4.1 Requirements&lt;br /&gt;
&lt;br /&gt;
1.4.2 Configure&lt;br /&gt;
&lt;br /&gt;
1.4.3 Make&lt;br /&gt;
&lt;br /&gt;
1.4.4 Use it&lt;br /&gt;
&lt;br /&gt;
1.5 The aMule 2.0.0 port&lt;br /&gt;
&lt;br /&gt;
1.6 The aMule 2.0.0-rc7 port&lt;br /&gt;
&lt;br /&gt;
1.7 The aMule 2.0.0-rc6 port&lt;br /&gt;
&lt;br /&gt;
1.8 The aMule 2.0.0-rc4a ports&lt;br /&gt;
&lt;br /&gt;
1.9 The aMule 2.0.0-rc3 port&lt;br /&gt;
&lt;br /&gt;
1.10 Installing non-official ports&lt;br /&gt;
&lt;br /&gt;
1.11 Compilation problems&lt;br /&gt;
&lt;br /&gt;
1.11.1 Patch 1&lt;br /&gt;
&lt;br /&gt;
1.11.2 Patch 2&lt;br /&gt;
&lt;br /&gt;
I think we can. If you do that, could you add the verison-tag at the end of the article?&lt;br /&gt;
&lt;br /&gt;
=&amp;gt; Ok, old chapter removed. But how to add a version tag ?&lt;br /&gt;
&lt;br /&gt;
Just Add ==Version== and the following infos at the end. See bottom of http://www.amule.org/wiki/index.php/HowTo_Compile_In_Debian&lt;br /&gt;
&lt;br /&gt;
== GD ==&lt;br /&gt;
&lt;br /&gt;
What options are necessary for GD? My guess is X11 if you want the gui/monolithic. What about xpm or fontconfig? I believe from memory iconv is necessary but again not sure. (I just selected all) [[User:Nil Einne|Nil Einne]] 23:24, 14 May 2009 (CEST)&lt;/div&gt;</summary>
		<author><name>Nil Einne</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Talk:Install-amule-freebsd</id>
		<title>Talk:Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Talk:Install-amule-freebsd"/>
				<updated>2009-05-14T21:24:37Z</updated>
		
		<summary type="html">&lt;p&gt;Nil Einne: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Can we delete theses old chapters ?&lt;br /&gt;
&lt;br /&gt;
1.3 Install aMule CVS on FreeBSD 5.3&lt;br /&gt;
&lt;br /&gt;
1.4 Manual compilation&lt;br /&gt;
&lt;br /&gt;
1.4.1 Requirements&lt;br /&gt;
&lt;br /&gt;
1.4.2 Configure&lt;br /&gt;
&lt;br /&gt;
1.4.3 Make&lt;br /&gt;
&lt;br /&gt;
1.4.4 Use it&lt;br /&gt;
&lt;br /&gt;
1.5 The aMule 2.0.0 port&lt;br /&gt;
&lt;br /&gt;
1.6 The aMule 2.0.0-rc7 port&lt;br /&gt;
&lt;br /&gt;
1.7 The aMule 2.0.0-rc6 port&lt;br /&gt;
&lt;br /&gt;
1.8 The aMule 2.0.0-rc4a ports&lt;br /&gt;
&lt;br /&gt;
1.9 The aMule 2.0.0-rc3 port&lt;br /&gt;
&lt;br /&gt;
1.10 Installing non-official ports&lt;br /&gt;
&lt;br /&gt;
1.11 Compilation problems&lt;br /&gt;
&lt;br /&gt;
1.11.1 Patch 1&lt;br /&gt;
&lt;br /&gt;
1.11.2 Patch 2&lt;br /&gt;
&lt;br /&gt;
I think we can. If you do that, could you add the verison-tag at the end of the article?&lt;br /&gt;
&lt;br /&gt;
=&amp;gt; Ok, old chapter removed. But how to add a version tag ?&lt;br /&gt;
&lt;br /&gt;
Just Add ==Version== and the following infos at the end. See bottom of http://www.amule.org/wiki/index.php/HowTo_Compile_In_Debian&lt;br /&gt;
&lt;br /&gt;
== GD ==&lt;br /&gt;
&lt;br /&gt;
What options are necessary for GD? My guess is X11 if you want the gui/monolithic. What about xpm or fontconfig? I believe from memory iconv is necessary but again not sure [[User:Nil Einne|Nil Einne]] 23:24, 14 May 2009 (CEST)&lt;/div&gt;</summary>
		<author><name>Nil Einne</name></author>	</entry>

	<entry>
		<id>http://test.amule.szerverem.hu/wiki/Install-amule-freebsd</id>
		<title>Install-amule-freebsd</title>
		<link rel="alternate" type="text/html" href="http://test.amule.szerverem.hu/wiki/Install-amule-freebsd"/>
				<updated>2009-05-14T19:44:54Z</updated>
		
		<summary type="html">&lt;p&gt;Nil Einne: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&lt;br /&gt;
[[Install-amule-freebsd|English]] | &lt;br /&gt;
[[Install-amule-freebsd-ru|Русский]]&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Install aMule 2.2.4 on [http://www.freebsd.org FreeBSD] 6.X, 7.X ==&lt;br /&gt;
Check that your /usr/ports is up-to-date, for example using portsnap:&lt;br /&gt;
           portsnap fetch update&lt;br /&gt;
&lt;br /&gt;
(or portsnap fetch extract then portsnap update)&lt;br /&gt;
&lt;br /&gt;
Upgrade the FreeBSD 6.X (not needed on FreeBSD 7.X) flex release (2.5.4) with the new one (2.5.35):&lt;br /&gt;
&lt;br /&gt;
            cd  /usr/ports/textproc/flex&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
This installation didn't override the old /usr/bin/, but put a new release on /usr/local/bin/.&lt;br /&gt;
&lt;br /&gt;
Then we need to rename the old flex release:&lt;br /&gt;
&lt;br /&gt;
            mv /usr/bin/flex /usr/bin/flex.old&lt;br /&gt;
&lt;br /&gt;
And check your version with this command:&lt;br /&gt;
&lt;br /&gt;
            flex --version&lt;br /&gt;
&lt;br /&gt;
You should obtain: 2.5.35 (or newer)&lt;br /&gt;
&lt;br /&gt;
Install wxgtk28:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/x11-toolkits/wxgtk28-unicode/&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install cryptopp:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/security/cryptopp&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install GD:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/graphics/gd&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Install GeoIP:&lt;br /&gt;
&lt;br /&gt;
            cd /usr/ports/net/GeoIP/&lt;br /&gt;
            make install clean&lt;br /&gt;
&lt;br /&gt;
Download the aMule 2.2.4 source code&lt;br /&gt;
[http://www.amule.org/files/files.php?cat=42 here].&lt;br /&gt;
&lt;br /&gt;
            tar -zxvf aMule-2.2.4.tar.bz2&lt;br /&gt;
            cd aMule-2.2.2/&lt;br /&gt;
&lt;br /&gt;
You need to edit the file src/Scanner.l and after the line:&lt;br /&gt;
            #include &amp;lt;wx/string.h&amp;gt;&lt;br /&gt;
Add the line:&lt;br /&gt;
            #include &amp;quot;Scanner.h.in&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Configure some environement variable, for bash user:&lt;br /&gt;
            export CPPFLAGS=&amp;quot;-I/usr/local/include&amp;quot;&lt;br /&gt;
            export LDFLAGS=&amp;quot;-L/usr/local/lib&amp;quot;&lt;br /&gt;
Or for csh user (default under FreeBSD):&lt;br /&gt;
            setenv CPPFLAGS &amp;quot;-I/usr/local/include&amp;quot;&lt;br /&gt;
            setenv LDFLAGS &amp;quot;-L/usr/local/lib&amp;quot;&lt;br /&gt;
Then start the compilation:&lt;br /&gt;
            &lt;br /&gt;
            ./configure --prefix=/home/'''user'''/aMule-2.2.4/ \&lt;br /&gt;
            --with-wx-config=/usr/local/bin/wxgtk2u-2.8-config --with-crypto-prefix=/usr/local/ \&lt;br /&gt;
            --disable-debug --with-curl-config=/usr/local/bin/curl-config --enable-webserver  \&lt;br /&gt;
            --enable-optimize --with-included-gettext --enable-amule-daemon --enable-amulecmd \&lt;br /&gt;
            --enable-cas --enable-alcc --enable-geoip&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' Check [[configure]]. Also, change '''user''' for your user name.&lt;br /&gt;
&lt;br /&gt;
            gmake&lt;br /&gt;
            gmake install&lt;br /&gt;
&lt;br /&gt;
And start it:&lt;br /&gt;
           ./amule-2.2.4/bin/amule &amp;amp;&lt;br /&gt;
&lt;br /&gt;
==  Installing 2.2.3  ==&lt;br /&gt;
&lt;br /&gt;
The amule port can be found at:&lt;br /&gt;
&lt;br /&gt;
/usr/ports/net-p2p/amule2&lt;br /&gt;
&lt;br /&gt;
I prefer the installation of applications on freebsd through the ports collection. Assumeing you're useing freebsd 6.2, as root:&lt;br /&gt;
&lt;br /&gt;
# cd /usr/ports/net-p2p/amule2&lt;br /&gt;
# make install clean&lt;br /&gt;
&lt;br /&gt;
In the next menu select deamon if you've plans to remote control aMule, or leave the options as they are, press OK and wait for compilation. The time needed depends on the depended applications that has te be installed. The program directory can be found: (~./aMule/). Means as root:&lt;br /&gt;
&lt;br /&gt;
/root/.aMule/&lt;br /&gt;
&lt;br /&gt;
any other user:&lt;br /&gt;
&lt;br /&gt;
/usr/home/&amp;lt;username&amp;gt;/.aMule/&lt;br /&gt;
&lt;br /&gt;
amule.conf can be found directly in the program folder. The webserver config file has to be made:&lt;br /&gt;
&lt;br /&gt;
# amuleweb -w.&lt;br /&gt;
&lt;br /&gt;
and is called remote.conf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The stable [[aMule]] is version 2.1.3.&lt;br /&gt;
&lt;br /&gt;
We wanna stay current? Help test? Help debug? Continue with this article to learn how to install/compile aMule on your system.&lt;/div&gt;</summary>
		<author><name>Nil Einne</name></author>	</entry>

	</feed>