<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://cblfs.clfs.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tiramisu</id>
	<title>CBLFS - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://cblfs.clfs.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tiramisu"/>
	<link rel="alternate" type="text/html" href="https://cblfs.clfs.org/Special:Contributions/Tiramisu"/>
	<updated>2026-04-10T16:13:48Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>?title=PHP&amp;diff=20287</id>
		<title>PHP</title>
		<link rel="alternate" type="text/html" href="?title=PHP&amp;diff=20287"/>
		<updated>2010-07-12T17:43:41Z</updated>

		<summary type="html">&lt;p&gt;Tiramisu: /* 64Bit */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Download Source:&lt;br /&gt;
| http://us2.php.net/get/php-{{PHP-Version}}.tar.bz2/from/us.php.net/mirror&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{{Package-Introduction|PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML.|http://www.php.net/}}&lt;br /&gt;
&lt;br /&gt;
== Warning: ==&lt;br /&gt;
&lt;br /&gt;
The PHP Developer team means:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;We do not recommend using a threaded MPM in production with Apache2. Use the prefork MPM instead, or use Apache1. For information on why, read the related FAQ entry on using Apache2 with a threaded MPM&amp;quot;[http://de.php.net/manual/en/faq.installation.php#faq.installation.apache2]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Dependencies ==&lt;br /&gt;
&lt;br /&gt;
=== Required ===&lt;br /&gt;
* [[Apache]]&lt;br /&gt;
&lt;br /&gt;
=== Optional ===&lt;br /&gt;
* [[libjpeg]]&lt;br /&gt;
* [[libmcrypt]]&lt;br /&gt;
* [[GDBM]]&lt;br /&gt;
* [[OpenSSL]]&lt;br /&gt;
* [[OpenLDAP]]&lt;br /&gt;
* [[MySQL]]&lt;br /&gt;
* [[GD]]&lt;br /&gt;
&lt;br /&gt;
== Configuration Information ==&lt;br /&gt;
&lt;br /&gt;
See the output of &#039;&#039;&#039;./configure --help&#039;&#039;&#039; for many more configuration options.&lt;br /&gt;
&lt;br /&gt;
If you use Apache 1 then you must use --with-apxs instead --with-apxs2&lt;br /&gt;
&lt;br /&gt;
If you want use Libmcrypt then you must add --with-mcrypt to the configure script &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Note|PHP does not use &#039;&#039;DESTDIR&#039;&#039;, it uses &#039;&#039;INSTALL_ROOT&#039;&#039; for the same purpose.  Use &#039;&#039;INSTALL_ROOT&#039;&#039; as you would normally use &#039;&#039;DESTDIR&#039;&#039;. There are some errors that are safe to ignore. It also will fail if it does not find a valid httpd.conf in the &amp;lt; DIRECTORY &amp;gt;etc/apache folder. one way to fix this is&lt;br /&gt;
install -d &amp;lt;DIRECTORY&amp;gt;/etc/apache&lt;br /&gt;
&amp;amp;&amp;amp; cp /etc/apache/httpd.conf &amp;lt;DIRECTOR&amp;gt;/etc/apache/&lt;br /&gt;
or figure out a way to fake the httpd.conf. remember to deal with the new data in httpd.conf with your installer}}&lt;br /&gt;
&lt;br /&gt;
{{Note|There are some reproducable problems with PHP on both x86 and x86_64 architecture when compiling with GCC4 and &#039;&#039;&#039;-O3&#039;&#039;&#039; optimization (see for example &amp;lt;nowiki&amp;gt;http://bugs.gentoo.org/show_bug.cgi?id=211611&amp;lt;/nowiki&amp;gt;, there are more).}}&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr --sysconfdir=/etc/php \&lt;br /&gt;
     --libdir=/usr/lib --localstatedir=/var \&lt;br /&gt;
     --with-apxs2=/usr/sbin/apxs --with-mysql \&lt;br /&gt;
     --with-layout=GNU &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
 cp php.ini-production /etc/php/php.ini&lt;br /&gt;
&lt;br /&gt;
The install script changes your Apache configuration and adds the entry: &amp;quot;LoadModule php{{PHP-Version2}}_module   lib/apache/libphp{{PHP-Version2}}.so&amp;quot;.  But it forgets to set the mime application type. Open /etc/apache/httpd.conf and add following line in the &amp;lt;IfModule mime_module&amp;gt; section:&lt;br /&gt;
&lt;br /&gt;
 AddType application/x-httpd-php .php .phtml .php3 .htm .html&lt;br /&gt;
&lt;br /&gt;
When you want start a site with php-code, you must add:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;IfModule dir_module&amp;gt;&lt;br /&gt;
    DirectoryIndex index.html index.php index.php3 index.htm&lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To test your PHP installation, try this:&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /srv/www/htdocs/phptest.php &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 &amp;lt;html&amp;gt;&lt;br /&gt;
 &amp;lt;head&amp;gt;&lt;br /&gt;
 &amp;lt;title&amp;gt;PHP-Testpage&amp;lt;/title&amp;gt;&lt;br /&gt;
 &amp;lt;/head&amp;gt;&lt;br /&gt;
 &amp;lt;body&amp;gt;&lt;br /&gt;
 &amp;lt;?php&lt;br /&gt;
 phpinfo();&lt;br /&gt;
 ?&amp;gt;&lt;br /&gt;
 &amp;lt;/body&amp;gt; &lt;br /&gt;
 &amp;lt;/html&amp;gt;&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
 /etc/rc.d/init.d/apache restart&lt;br /&gt;
 lynx localhost/phptest.php&lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD32}&amp;quot; PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH32}&amp;quot; USE_ARCH=32 \&lt;br /&gt;
 ./configure --prefix=/usr --sysconfdir=/etc/php --libdir=/usr/lib \&lt;br /&gt;
     --localstatedir=/var --with-apxs2=/usr/sbin/apxs --with-mysql \&lt;br /&gt;
     --with-layout=GNU &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install &amp;amp;&amp;amp;&lt;br /&gt;
 mv -v /usr/bin/php-config{,-32} &amp;amp;&amp;amp;&lt;br /&gt;
 cp php.ini-production /etc/php/php.ini&lt;br /&gt;
&lt;br /&gt;
The installscript change your Apache config and add the entry: &amp;quot;LoadModule php{{PHP-Version2}}_module   lib/apache/libphp{{PHP-Version2}}.so&amp;quot;&lt;br /&gt;
But it forgets to set the mime applicationtype. So go to the /etc/apache/httpd.conf and add following line in the &amp;lt;IfModule mime_module&amp;gt; section:&lt;br /&gt;
&lt;br /&gt;
 AddType application/x-httpd-php .php .phtml .php3 .htm .html&lt;br /&gt;
&lt;br /&gt;
When you want start a site with php-code, you must add:&lt;br /&gt;
&lt;br /&gt;
 IfModule dir_module&amp;gt;&lt;br /&gt;
    DirectoryIndex index.html index.php index.php3 index.htm&lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you build also a 64Bit PHP, you must:&lt;br /&gt;
 &lt;br /&gt;
 rm -f /etc/php/pear.conf&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD64}&amp;quot; PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH64}&amp;quot; USE_ARCH=64 MYSQL_LIB_DIR=/usr/lib64 \&lt;br /&gt;
 ./configure --prefix=/usr --sysconfdir=/etc/php \&lt;br /&gt;
     --libdir=/usr/lib64 --localstatedir=/var \&lt;br /&gt;
     --with-apxs2=/usr/sbin/apxs --with-mysql \&lt;br /&gt;
     --with-layout=GNU &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
 mv -v /usr/bin/php-config{,-64}&lt;br /&gt;
 ln -sfv multiarch_wrapper /usr/bin/php-config&lt;br /&gt;
 cp php.ini-production /etc/php/php.ini&lt;br /&gt;
&lt;br /&gt;
The installscript change your Apache config and add the entry: &amp;quot;LoadModule php{{PHP-Version2}}_module   lib64/apache/libphp{{PHP-Version2}}.so&amp;quot;&lt;br /&gt;
But it forgets to set the mime applicationtype. So go to the /etc/apache/httpd.conf and add the following line in the &amp;lt;IfModule mime_module&amp;gt; section:&lt;br /&gt;
&lt;br /&gt;
 AddType application/x-httpd-php .php .phtml .php3 .htm .html&lt;br /&gt;
&lt;br /&gt;
When you want start a site with php-code, you must add:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;IfModule dir_module&amp;gt;&lt;br /&gt;
    DirectoryIndex index.html index.php index.php3 index.htm&lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Note|If you have a 32bit Apache then make sure you have the following in httpd.conf:&lt;br /&gt;
 LoadModule php{{PHP-Version2}}_module   lib/apache/libphp{{PHP-Version2}}.so&lt;br /&gt;
If you have a 64bit Apache then make sure you have the following in httpd.conf:&lt;br /&gt;
 LoadModule php{{PHP-Version2}}_module   lib64/apache/libphp{{PHP-Version2}}.so&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Programming]]&lt;/div&gt;</summary>
		<author><name>Tiramisu</name></author>
	</entry>
	<entry>
		<id>?title=PHP&amp;diff=20286</id>
		<title>PHP</title>
		<link rel="alternate" type="text/html" href="?title=PHP&amp;diff=20286"/>
		<updated>2010-07-12T17:43:08Z</updated>

		<summary type="html">&lt;p&gt;Tiramisu: /* 32Bit */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Download Source:&lt;br /&gt;
| http://us2.php.net/get/php-{{PHP-Version}}.tar.bz2/from/us.php.net/mirror&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{{Package-Introduction|PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML.|http://www.php.net/}}&lt;br /&gt;
&lt;br /&gt;
== Warning: ==&lt;br /&gt;
&lt;br /&gt;
The PHP Developer team means:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;We do not recommend using a threaded MPM in production with Apache2. Use the prefork MPM instead, or use Apache1. For information on why, read the related FAQ entry on using Apache2 with a threaded MPM&amp;quot;[http://de.php.net/manual/en/faq.installation.php#faq.installation.apache2]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Dependencies ==&lt;br /&gt;
&lt;br /&gt;
=== Required ===&lt;br /&gt;
* [[Apache]]&lt;br /&gt;
&lt;br /&gt;
=== Optional ===&lt;br /&gt;
* [[libjpeg]]&lt;br /&gt;
* [[libmcrypt]]&lt;br /&gt;
* [[GDBM]]&lt;br /&gt;
* [[OpenSSL]]&lt;br /&gt;
* [[OpenLDAP]]&lt;br /&gt;
* [[MySQL]]&lt;br /&gt;
* [[GD]]&lt;br /&gt;
&lt;br /&gt;
== Configuration Information ==&lt;br /&gt;
&lt;br /&gt;
See the output of &#039;&#039;&#039;./configure --help&#039;&#039;&#039; for many more configuration options.&lt;br /&gt;
&lt;br /&gt;
If you use Apache 1 then you must use --with-apxs instead --with-apxs2&lt;br /&gt;
&lt;br /&gt;
If you want use Libmcrypt then you must add --with-mcrypt to the configure script &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Note|PHP does not use &#039;&#039;DESTDIR&#039;&#039;, it uses &#039;&#039;INSTALL_ROOT&#039;&#039; for the same purpose.  Use &#039;&#039;INSTALL_ROOT&#039;&#039; as you would normally use &#039;&#039;DESTDIR&#039;&#039;. There are some errors that are safe to ignore. It also will fail if it does not find a valid httpd.conf in the &amp;lt; DIRECTORY &amp;gt;etc/apache folder. one way to fix this is&lt;br /&gt;
install -d &amp;lt;DIRECTORY&amp;gt;/etc/apache&lt;br /&gt;
&amp;amp;&amp;amp; cp /etc/apache/httpd.conf &amp;lt;DIRECTOR&amp;gt;/etc/apache/&lt;br /&gt;
or figure out a way to fake the httpd.conf. remember to deal with the new data in httpd.conf with your installer}}&lt;br /&gt;
&lt;br /&gt;
{{Note|There are some reproducable problems with PHP on both x86 and x86_64 architecture when compiling with GCC4 and &#039;&#039;&#039;-O3&#039;&#039;&#039; optimization (see for example &amp;lt;nowiki&amp;gt;http://bugs.gentoo.org/show_bug.cgi?id=211611&amp;lt;/nowiki&amp;gt;, there are more).}}&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr --sysconfdir=/etc/php \&lt;br /&gt;
     --libdir=/usr/lib --localstatedir=/var \&lt;br /&gt;
     --with-apxs2=/usr/sbin/apxs --with-mysql \&lt;br /&gt;
     --with-layout=GNU &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
 cp php.ini-production /etc/php/php.ini&lt;br /&gt;
&lt;br /&gt;
The install script changes your Apache configuration and adds the entry: &amp;quot;LoadModule php{{PHP-Version2}}_module   lib/apache/libphp{{PHP-Version2}}.so&amp;quot;.  But it forgets to set the mime application type. Open /etc/apache/httpd.conf and add following line in the &amp;lt;IfModule mime_module&amp;gt; section:&lt;br /&gt;
&lt;br /&gt;
 AddType application/x-httpd-php .php .phtml .php3 .htm .html&lt;br /&gt;
&lt;br /&gt;
When you want start a site with php-code, you must add:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;IfModule dir_module&amp;gt;&lt;br /&gt;
    DirectoryIndex index.html index.php index.php3 index.htm&lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To test your PHP installation, try this:&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /srv/www/htdocs/phptest.php &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 &amp;lt;html&amp;gt;&lt;br /&gt;
 &amp;lt;head&amp;gt;&lt;br /&gt;
 &amp;lt;title&amp;gt;PHP-Testpage&amp;lt;/title&amp;gt;&lt;br /&gt;
 &amp;lt;/head&amp;gt;&lt;br /&gt;
 &amp;lt;body&amp;gt;&lt;br /&gt;
 &amp;lt;?php&lt;br /&gt;
 phpinfo();&lt;br /&gt;
 ?&amp;gt;&lt;br /&gt;
 &amp;lt;/body&amp;gt; &lt;br /&gt;
 &amp;lt;/html&amp;gt;&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
 /etc/rc.d/init.d/apache restart&lt;br /&gt;
 lynx localhost/phptest.php&lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD32}&amp;quot; PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH32}&amp;quot; USE_ARCH=32 \&lt;br /&gt;
 ./configure --prefix=/usr --sysconfdir=/etc/php --libdir=/usr/lib \&lt;br /&gt;
     --localstatedir=/var --with-apxs2=/usr/sbin/apxs --with-mysql \&lt;br /&gt;
     --with-layout=GNU &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install &amp;amp;&amp;amp;&lt;br /&gt;
 mv -v /usr/bin/php-config{,-32} &amp;amp;&amp;amp;&lt;br /&gt;
 cp php.ini-production /etc/php/php.ini&lt;br /&gt;
&lt;br /&gt;
The installscript change your Apache config and add the entry: &amp;quot;LoadModule php{{PHP-Version2}}_module   lib/apache/libphp{{PHP-Version2}}.so&amp;quot;&lt;br /&gt;
But it forgets to set the mime applicationtype. So go to the /etc/apache/httpd.conf and add following line in the &amp;lt;IfModule mime_module&amp;gt; section:&lt;br /&gt;
&lt;br /&gt;
 AddType application/x-httpd-php .php .phtml .php3 .htm .html&lt;br /&gt;
&lt;br /&gt;
When you want start a site with php-code, you must add:&lt;br /&gt;
&lt;br /&gt;
 IfModule dir_module&amp;gt;&lt;br /&gt;
    DirectoryIndex index.html index.php index.php3 index.htm&lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you build also a 64Bit PHP, you must:&lt;br /&gt;
 &lt;br /&gt;
 rm -f /etc/php/pear.conf&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD64}&amp;quot; PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH64}&amp;quot; USE_ARCH=64 MYSQL_LIB_DIR=/usr/lib64 \&lt;br /&gt;
 ./configure --prefix=/usr --sysconfdir=/etc/php \&lt;br /&gt;
     --libdir=/usr/lib64 --localstatedir=/var \&lt;br /&gt;
     --with-apxs2=/usr/sbin/apxs --with-mysql \&lt;br /&gt;
     --with-layout=GNU &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
 mv -v /usr/bin/php-config{,-64}&lt;br /&gt;
 ln -sfv multiarch_wrapper /usr/bin/php-config&lt;br /&gt;
 cp php.ini-recommended /etc/php/php.ini&lt;br /&gt;
&lt;br /&gt;
The installscript change your Apache config and add the entry: &amp;quot;LoadModule php{{PHP-Version2}}_module   lib64/apache/libphp{{PHP-Version2}}.so&amp;quot;&lt;br /&gt;
But it forgets to set the mime applicationtype. So go to the /etc/apache/httpd.conf and add the following line in the &amp;lt;IfModule mime_module&amp;gt; section:&lt;br /&gt;
&lt;br /&gt;
 AddType application/x-httpd-php .php .phtml .php3 .htm .html&lt;br /&gt;
&lt;br /&gt;
When you want start a site with php-code, you must add:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;IfModule dir_module&amp;gt;&lt;br /&gt;
    DirectoryIndex index.html index.php index.php3 index.htm&lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Note|If you have a 32bit Apache then make sure you have the following in httpd.conf:&lt;br /&gt;
 LoadModule php{{PHP-Version2}}_module   lib/apache/libphp{{PHP-Version2}}.so&lt;br /&gt;
If you have a 64bit Apache then make sure you have the following in httpd.conf:&lt;br /&gt;
 LoadModule php{{PHP-Version2}}_module   lib64/apache/libphp{{PHP-Version2}}.so&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Programming]]&lt;/div&gt;</summary>
		<author><name>Tiramisu</name></author>
	</entry>
	<entry>
		<id>?title=PHP&amp;diff=20285</id>
		<title>PHP</title>
		<link rel="alternate" type="text/html" href="?title=PHP&amp;diff=20285"/>
		<updated>2010-07-12T17:42:41Z</updated>

		<summary type="html">&lt;p&gt;Tiramisu: /* Non-Multilib */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Download Source:&lt;br /&gt;
| http://us2.php.net/get/php-{{PHP-Version}}.tar.bz2/from/us.php.net/mirror&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{{Package-Introduction|PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML.|http://www.php.net/}}&lt;br /&gt;
&lt;br /&gt;
== Warning: ==&lt;br /&gt;
&lt;br /&gt;
The PHP Developer team means:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;We do not recommend using a threaded MPM in production with Apache2. Use the prefork MPM instead, or use Apache1. For information on why, read the related FAQ entry on using Apache2 with a threaded MPM&amp;quot;[http://de.php.net/manual/en/faq.installation.php#faq.installation.apache2]&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Dependencies ==&lt;br /&gt;
&lt;br /&gt;
=== Required ===&lt;br /&gt;
* [[Apache]]&lt;br /&gt;
&lt;br /&gt;
=== Optional ===&lt;br /&gt;
* [[libjpeg]]&lt;br /&gt;
* [[libmcrypt]]&lt;br /&gt;
* [[GDBM]]&lt;br /&gt;
* [[OpenSSL]]&lt;br /&gt;
* [[OpenLDAP]]&lt;br /&gt;
* [[MySQL]]&lt;br /&gt;
* [[GD]]&lt;br /&gt;
&lt;br /&gt;
== Configuration Information ==&lt;br /&gt;
&lt;br /&gt;
See the output of &#039;&#039;&#039;./configure --help&#039;&#039;&#039; for many more configuration options.&lt;br /&gt;
&lt;br /&gt;
If you use Apache 1 then you must use --with-apxs instead --with-apxs2&lt;br /&gt;
&lt;br /&gt;
If you want use Libmcrypt then you must add --with-mcrypt to the configure script &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Note|PHP does not use &#039;&#039;DESTDIR&#039;&#039;, it uses &#039;&#039;INSTALL_ROOT&#039;&#039; for the same purpose.  Use &#039;&#039;INSTALL_ROOT&#039;&#039; as you would normally use &#039;&#039;DESTDIR&#039;&#039;. There are some errors that are safe to ignore. It also will fail if it does not find a valid httpd.conf in the &amp;lt; DIRECTORY &amp;gt;etc/apache folder. one way to fix this is&lt;br /&gt;
install -d &amp;lt;DIRECTORY&amp;gt;/etc/apache&lt;br /&gt;
&amp;amp;&amp;amp; cp /etc/apache/httpd.conf &amp;lt;DIRECTOR&amp;gt;/etc/apache/&lt;br /&gt;
or figure out a way to fake the httpd.conf. remember to deal with the new data in httpd.conf with your installer}}&lt;br /&gt;
&lt;br /&gt;
{{Note|There are some reproducable problems with PHP on both x86 and x86_64 architecture when compiling with GCC4 and &#039;&#039;&#039;-O3&#039;&#039;&#039; optimization (see for example &amp;lt;nowiki&amp;gt;http://bugs.gentoo.org/show_bug.cgi?id=211611&amp;lt;/nowiki&amp;gt;, there are more).}}&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr --sysconfdir=/etc/php \&lt;br /&gt;
     --libdir=/usr/lib --localstatedir=/var \&lt;br /&gt;
     --with-apxs2=/usr/sbin/apxs --with-mysql \&lt;br /&gt;
     --with-layout=GNU &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
 cp php.ini-production /etc/php/php.ini&lt;br /&gt;
&lt;br /&gt;
The install script changes your Apache configuration and adds the entry: &amp;quot;LoadModule php{{PHP-Version2}}_module   lib/apache/libphp{{PHP-Version2}}.so&amp;quot;.  But it forgets to set the mime application type. Open /etc/apache/httpd.conf and add following line in the &amp;lt;IfModule mime_module&amp;gt; section:&lt;br /&gt;
&lt;br /&gt;
 AddType application/x-httpd-php .php .phtml .php3 .htm .html&lt;br /&gt;
&lt;br /&gt;
When you want start a site with php-code, you must add:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;IfModule dir_module&amp;gt;&lt;br /&gt;
    DirectoryIndex index.html index.php index.php3 index.htm&lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To test your PHP installation, try this:&lt;br /&gt;
&lt;br /&gt;
 cat &amp;gt; /srv/www/htdocs/phptest.php &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 &amp;lt;html&amp;gt;&lt;br /&gt;
 &amp;lt;head&amp;gt;&lt;br /&gt;
 &amp;lt;title&amp;gt;PHP-Testpage&amp;lt;/title&amp;gt;&lt;br /&gt;
 &amp;lt;/head&amp;gt;&lt;br /&gt;
 &amp;lt;body&amp;gt;&lt;br /&gt;
 &amp;lt;?php&lt;br /&gt;
 phpinfo();&lt;br /&gt;
 ?&amp;gt;&lt;br /&gt;
 &amp;lt;/body&amp;gt; &lt;br /&gt;
 &amp;lt;/html&amp;gt;&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
 /etc/rc.d/init.d/apache restart&lt;br /&gt;
 lynx localhost/phptest.php&lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD32}&amp;quot; PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH32}&amp;quot; USE_ARCH=32 \&lt;br /&gt;
 ./configure --prefix=/usr --sysconfdir=/etc/php --libdir=/usr/lib \&lt;br /&gt;
     --localstatedir=/var --with-apxs2=/usr/sbin/apxs --with-mysql \&lt;br /&gt;
     --with-layout=GNU &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install &amp;amp;&amp;amp;&lt;br /&gt;
 mv -v /usr/bin/php-config{,-32} &amp;amp;&amp;amp;&lt;br /&gt;
 cp php.ini-recommended /etc/php/php.ini&lt;br /&gt;
&lt;br /&gt;
The installscript change your Apache config and add the entry: &amp;quot;LoadModule php{{PHP-Version2}}_module   lib/apache/libphp{{PHP-Version2}}.so&amp;quot;&lt;br /&gt;
But it forgets to set the mime applicationtype. So go to the /etc/apache/httpd.conf and add following line in the &amp;lt;IfModule mime_module&amp;gt; section:&lt;br /&gt;
&lt;br /&gt;
 AddType application/x-httpd-php .php .phtml .php3 .htm .html&lt;br /&gt;
&lt;br /&gt;
When you want start a site with php-code, you must add:&lt;br /&gt;
&lt;br /&gt;
 IfModule dir_module&amp;gt;&lt;br /&gt;
    DirectoryIndex index.html index.php index.php3 index.htm&lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you build also a 64Bit PHP, you must:&lt;br /&gt;
 &lt;br /&gt;
 rm -f /etc/php/pear.conf&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD64}&amp;quot; PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH64}&amp;quot; USE_ARCH=64 MYSQL_LIB_DIR=/usr/lib64 \&lt;br /&gt;
 ./configure --prefix=/usr --sysconfdir=/etc/php \&lt;br /&gt;
     --libdir=/usr/lib64 --localstatedir=/var \&lt;br /&gt;
     --with-apxs2=/usr/sbin/apxs --with-mysql \&lt;br /&gt;
     --with-layout=GNU &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
 mv -v /usr/bin/php-config{,-64}&lt;br /&gt;
 ln -sfv multiarch_wrapper /usr/bin/php-config&lt;br /&gt;
 cp php.ini-recommended /etc/php/php.ini&lt;br /&gt;
&lt;br /&gt;
The installscript change your Apache config and add the entry: &amp;quot;LoadModule php{{PHP-Version2}}_module   lib64/apache/libphp{{PHP-Version2}}.so&amp;quot;&lt;br /&gt;
But it forgets to set the mime applicationtype. So go to the /etc/apache/httpd.conf and add the following line in the &amp;lt;IfModule mime_module&amp;gt; section:&lt;br /&gt;
&lt;br /&gt;
 AddType application/x-httpd-php .php .phtml .php3 .htm .html&lt;br /&gt;
&lt;br /&gt;
When you want start a site with php-code, you must add:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;IfModule dir_module&amp;gt;&lt;br /&gt;
    DirectoryIndex index.html index.php index.php3 index.htm&lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Note|If you have a 32bit Apache then make sure you have the following in httpd.conf:&lt;br /&gt;
 LoadModule php{{PHP-Version2}}_module   lib/apache/libphp{{PHP-Version2}}.so&lt;br /&gt;
If you have a 64bit Apache then make sure you have the following in httpd.conf:&lt;br /&gt;
 LoadModule php{{PHP-Version2}}_module   lib64/apache/libphp{{PHP-Version2}}.so&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Programming]]&lt;/div&gt;</summary>
		<author><name>Tiramisu</name></author>
	</entry>
	<entry>
		<id>?title=Usbutils&amp;diff=19916</id>
		<title>Usbutils</title>
		<link rel="alternate" type="text/html" href="?title=Usbutils&amp;diff=19916"/>
		<updated>2010-02-20T09:01:28Z</updated>

		<summary type="html">&lt;p&gt;Tiramisu: /* 64Bit */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
!Download Source:&lt;br /&gt;
| http://downloads.sourceforge.net/linux-usb/usbutils-{{Usbutils-Version}}.tar.gz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{{Blank-Package-Introduction}}&lt;br /&gt;
&lt;br /&gt;
== Dependencies ==&lt;br /&gt;
&lt;br /&gt;
=== Required ===&lt;br /&gt;
* [[libusb]]&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install &amp;amp;&amp;amp;&lt;br /&gt;
 install -v -m755 update-usbids.sh /usr/sbin/update-usbids&lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;This package does not provide any libraries so only one installation is needed.&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD32}&amp;quot; PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH32}&amp;quot; ./configure --prefix=/usr &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install &amp;amp;&amp;amp;&lt;br /&gt;
 install -v -m755 update-usbids.sh /usr/sbin/update-usbids&lt;br /&gt;
&lt;br /&gt;
=== N32 ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILDN32}&amp;quot; PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATHN32}&amp;quot; ./configure --prefix=/usr &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install &amp;amp;&amp;amp;&lt;br /&gt;
 install -v -m755 update-usbids.sh /usr/sbin/update-usbids&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD64}&amp;quot; PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH64}&amp;quot; ./configure --prefix=/usr &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install &amp;amp;&amp;amp;&lt;br /&gt;
 install -v -m755 update-usbids.sh /usr/sbin/update-usbids&lt;br /&gt;
&lt;br /&gt;
= Contents =&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;text-align: left;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! Installed Programs:&lt;br /&gt;
| lsusb and update-usbids&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! Installed Libraries:&lt;br /&gt;
| None&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! Installed Directories:&lt;br /&gt;
| None&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Short Descriptions ===&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;text-align: left;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! lsusb&lt;br /&gt;
| is a utility for displaying information about all USB buses in the system and all devices connected to them.&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! update-usbids&lt;br /&gt;
| downloads the current version of the USB ID list. Requires [[Wget]] or [[Lynx]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:General Utilities]]&lt;/div&gt;</summary>
		<author><name>Tiramisu</name></author>
	</entry>
	<entry>
		<id>?title=Usbutils&amp;diff=19915</id>
		<title>Usbutils</title>
		<link rel="alternate" type="text/html" href="?title=Usbutils&amp;diff=19915"/>
		<updated>2010-02-20T09:00:55Z</updated>

		<summary type="html">&lt;p&gt;Tiramisu: /* N32 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
!Download Source:&lt;br /&gt;
| http://downloads.sourceforge.net/linux-usb/usbutils-{{Usbutils-Version}}.tar.gz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{{Blank-Package-Introduction}}&lt;br /&gt;
&lt;br /&gt;
== Dependencies ==&lt;br /&gt;
&lt;br /&gt;
=== Required ===&lt;br /&gt;
* [[libusb]]&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install &amp;amp;&amp;amp;&lt;br /&gt;
 install -v -m755 update-usbids.sh /usr/sbin/update-usbids&lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;This package does not provide any libraries so only one installation is needed.&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD32}&amp;quot; PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH32}&amp;quot; ./configure --prefix=/usr &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install &amp;amp;&amp;amp;&lt;br /&gt;
 install -v -m755 update-usbids.sh /usr/sbin/update-usbids&lt;br /&gt;
&lt;br /&gt;
=== N32 ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILDN32}&amp;quot; PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATHN32}&amp;quot; ./configure --prefix=/usr &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install &amp;amp;&amp;amp;&lt;br /&gt;
 install -v -m755 update-usbids.sh /usr/sbin/update-usbids&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD64}&amp;quot; ./configure --prefix=/usr &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install &amp;amp;&amp;amp;&lt;br /&gt;
 install -v -m755 update-usbids.sh /usr/sbin/update-usbids&lt;br /&gt;
&lt;br /&gt;
= Contents =&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;text-align: left;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! Installed Programs:&lt;br /&gt;
| lsusb and update-usbids&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! Installed Libraries:&lt;br /&gt;
| None&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! Installed Directories:&lt;br /&gt;
| None&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Short Descriptions ===&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;text-align: left;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! lsusb&lt;br /&gt;
| is a utility for displaying information about all USB buses in the system and all devices connected to them.&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! update-usbids&lt;br /&gt;
| downloads the current version of the USB ID list. Requires [[Wget]] or [[Lynx]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:General Utilities]]&lt;/div&gt;</summary>
		<author><name>Tiramisu</name></author>
	</entry>
	<entry>
		<id>?title=Usbutils&amp;diff=19914</id>
		<title>Usbutils</title>
		<link rel="alternate" type="text/html" href="?title=Usbutils&amp;diff=19914"/>
		<updated>2010-02-20T09:00:24Z</updated>

		<summary type="html">&lt;p&gt;Tiramisu: /* 32Bit */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
!Download Source:&lt;br /&gt;
| http://downloads.sourceforge.net/linux-usb/usbutils-{{Usbutils-Version}}.tar.gz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{{Blank-Package-Introduction}}&lt;br /&gt;
&lt;br /&gt;
== Dependencies ==&lt;br /&gt;
&lt;br /&gt;
=== Required ===&lt;br /&gt;
* [[libusb]]&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install &amp;amp;&amp;amp;&lt;br /&gt;
 install -v -m755 update-usbids.sh /usr/sbin/update-usbids&lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;This package does not provide any libraries so only one installation is needed.&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD32}&amp;quot; PKG_CONFIG_PATH=&amp;quot;${PKG_CONFIG_PATH32}&amp;quot; ./configure --prefix=/usr &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install &amp;amp;&amp;amp;&lt;br /&gt;
 install -v -m755 update-usbids.sh /usr/sbin/update-usbids&lt;br /&gt;
&lt;br /&gt;
=== N32 ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILDN32}&amp;quot; ./configure --prefix=/usr &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install &amp;amp;&amp;amp;&lt;br /&gt;
 install -v -m755 update-usbids.sh /usr/sbin/update-usbids&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD64}&amp;quot; ./configure --prefix=/usr &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install &amp;amp;&amp;amp;&lt;br /&gt;
 install -v -m755 update-usbids.sh /usr/sbin/update-usbids&lt;br /&gt;
&lt;br /&gt;
= Contents =&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;text-align: left;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! Installed Programs:&lt;br /&gt;
| lsusb and update-usbids&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! Installed Libraries:&lt;br /&gt;
| None&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! Installed Directories:&lt;br /&gt;
| None&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Short Descriptions ===&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;text-align: left;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! lsusb&lt;br /&gt;
| is a utility for displaying information about all USB buses in the system and all devices connected to them.&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! update-usbids&lt;br /&gt;
| downloads the current version of the USB ID list. Requires [[Wget]] or [[Lynx]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:General Utilities]]&lt;/div&gt;</summary>
		<author><name>Tiramisu</name></author>
	</entry>
	<entry>
		<id>?title=Foomatic-filters&amp;diff=18933</id>
		<title>Foomatic-filters</title>
		<link rel="alternate" type="text/html" href="?title=Foomatic-filters&amp;diff=18933"/>
		<updated>2009-08-24T11:46:43Z</updated>

		<summary type="html">&lt;p&gt;Tiramisu: /* 64Bit */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
!Download Source:&lt;br /&gt;
| http://www.openprinting.org/download/foomatic/foomatic-filters-4.0-current.tar.gz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{{Package-Introduction|Foomatic is a database-driven system for integrating free software printer drivers with common spoolers under Unix.}}&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr --sysconfdir=/etc &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install &lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD32}&amp;quot; ./configure --prefix=/usr --sysconfdir=/etc &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
=== N32 ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILDN32}&amp;quot; ./configure --prefix=/usr --libdir=/usr/lib32 \&lt;br /&gt;
     --sysconfdir=/etc &amp;amp;&amp;amp;&lt;br /&gt;
 sed -i &#039;s:/lib:/lib32:g&#039; Makefile&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD64}&amp;quot; ./configure --prefix=/usr --libdir=/usr/lib64 \&lt;br /&gt;
     --sysconfdir=/etc &amp;amp;&amp;amp;&lt;br /&gt;
 sed -i &#039;s:/lib:/lib64:g&#039; Makefile&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install&lt;/div&gt;</summary>
		<author><name>Tiramisu</name></author>
	</entry>
	<entry>
		<id>?title=Foomatic-filters&amp;diff=18932</id>
		<title>Foomatic-filters</title>
		<link rel="alternate" type="text/html" href="?title=Foomatic-filters&amp;diff=18932"/>
		<updated>2009-08-24T11:46:21Z</updated>

		<summary type="html">&lt;p&gt;Tiramisu: /* N32 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
!Download Source:&lt;br /&gt;
| http://www.openprinting.org/download/foomatic/foomatic-filters-4.0-current.tar.gz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{{Package-Introduction|Foomatic is a database-driven system for integrating free software printer drivers with common spoolers under Unix.}}&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr --sysconfdir=/etc &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install &lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD32}&amp;quot; ./configure --prefix=/usr --sysconfdir=/etc &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
=== N32 ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILDN32}&amp;quot; ./configure --prefix=/usr --libdir=/usr/lib32 \&lt;br /&gt;
     --sysconfdir=/etc &amp;amp;&amp;amp;&lt;br /&gt;
 sed -i &#039;s:/lib:/lib32:g&#039; Makefile&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr --libdir=/usr/lib64 \&lt;br /&gt;
     --sysconfdir=/etc &amp;amp;&amp;amp;&lt;br /&gt;
 sed -i &#039;s:/lib:/lib64:g&#039; Makefile&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install&lt;/div&gt;</summary>
		<author><name>Tiramisu</name></author>
	</entry>
	<entry>
		<id>?title=Foomatic-filters&amp;diff=18931</id>
		<title>Foomatic-filters</title>
		<link rel="alternate" type="text/html" href="?title=Foomatic-filters&amp;diff=18931"/>
		<updated>2009-08-24T11:45:52Z</updated>

		<summary type="html">&lt;p&gt;Tiramisu: /* 32Bit */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
!Download Source:&lt;br /&gt;
| http://www.openprinting.org/download/foomatic/foomatic-filters-4.0-current.tar.gz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{{Package-Introduction|Foomatic is a database-driven system for integrating free software printer drivers with common spoolers under Unix.}}&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr --sysconfdir=/etc &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install &lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD32}&amp;quot; ./configure --prefix=/usr --sysconfdir=/etc &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
=== N32 ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr --libdir=/usr/lib32 \&lt;br /&gt;
     --sysconfdir=/etc &amp;amp;&amp;amp;&lt;br /&gt;
 sed -i &#039;s:/lib:/lib32:g&#039; Makefile&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install &lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr --libdir=/usr/lib64 \&lt;br /&gt;
     --sysconfdir=/etc &amp;amp;&amp;amp;&lt;br /&gt;
 sed -i &#039;s:/lib:/lib64:g&#039; Makefile&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install&lt;/div&gt;</summary>
		<author><name>Tiramisu</name></author>
	</entry>
	<entry>
		<id>?title=Libmng&amp;diff=18905</id>
		<title>Libmng</title>
		<link rel="alternate" type="text/html" href="?title=Libmng&amp;diff=18905"/>
		<updated>2009-08-20T08:55:21Z</updated>

		<summary type="html">&lt;p&gt;Tiramisu: /* N32 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! Download Source:&lt;br /&gt;
| http://prdownloads.sourceforge.net/libmng/libmng-{{Libmng-Version}}.tar.gz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{{Package-Introduction|The Libmng library supports decoding, displaying, encoding, and various other manipulations of the Multiple-image Network Graphics (MNG) format image files.|http://gjuyn.xs4all.nl/libmng/}}&lt;br /&gt;
&lt;br /&gt;
== Dependencies ==&lt;br /&gt;
&lt;br /&gt;
=== Required ===&lt;br /&gt;
*[[libjpeg]]&lt;br /&gt;
*[[little cms]]&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 ln -sf makefiles/configure.in . &amp;amp;&amp;amp;&lt;br /&gt;
 ln -sf makefiles/Makefile.am . &amp;amp;&amp;amp;&lt;br /&gt;
 autoreconf -f -i &amp;amp;&amp;amp;&lt;br /&gt;
 ./configure --prefix=/usr &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
 install -dv -m755 /usr/share/doc/libmng-{{Libmng-Version}} &amp;amp;&amp;amp;&lt;br /&gt;
 install -v -m644 doc/*.{png,txt} /usr/share/doc/libmng-{{Libmng-Version}}&lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 ln -sf makefiles/configure.in . &amp;amp;&amp;amp;&lt;br /&gt;
 ln -sf makefiles/Makefile.am . &amp;amp;&amp;amp;&lt;br /&gt;
 autoreconf -f -i &amp;amp;&amp;amp;&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD32}&amp;quot; ./configure --prefix=/usr &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
=== N32 ===&lt;br /&gt;
&lt;br /&gt;
Compile the package&lt;br /&gt;
&lt;br /&gt;
 ln -sf makefiles/configure.in . &amp;amp;&amp;amp;&lt;br /&gt;
 ln -sf makefiles/Makefile.am . &amp;amp;&amp;amp;&lt;br /&gt;
 autoreconf -f -i &amp;amp;&amp;amp;&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD32}&amp;quot; ./configure --prefix=/usr --libdir=/usr/lib32 &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
 &lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package&lt;br /&gt;
&lt;br /&gt;
 ln -sf makefiles/configure.in . &amp;amp;&amp;amp;&lt;br /&gt;
 ln -sf makefiles/Makefile.am . &amp;amp;&amp;amp;&lt;br /&gt;
 autoreconf -f -i &amp;amp;&amp;amp;&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD64}&amp;quot; ./configure --prefix=/usr --libdir=/usr/lib64 &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
 &lt;br /&gt;
 make install&lt;br /&gt;
 install -dv -m755 /usr/share/doc/libmng-{{Libmng-Version}} &amp;amp;&amp;amp;&lt;br /&gt;
 install -v -m644 doc/*.{png,txt} /usr/share/doc/libmng-{{Libmng-Version}}&lt;br /&gt;
&lt;br /&gt;
= Contents =&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;text-align: left;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! Installed Programs:&lt;br /&gt;
| None&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! Installed Libraries:&lt;br /&gt;
| libmng.{so,a}&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! Installed Directories:&lt;br /&gt;
| /usr/share/doc/libmng-{{Libmng-Version}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Short Descriptions ===&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;text-align: left;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
! libmng.{so,a}&lt;br /&gt;
| provides functions for programs wishing to read and write MNG files which are animation files without the patent problems associated with certain other formats.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Graphics Libraries]]&lt;/div&gt;</summary>
		<author><name>Tiramisu</name></author>
	</entry>
	<entry>
		<id>?title=WPA_Supplicant&amp;diff=18904</id>
		<title>WPA Supplicant</title>
		<link rel="alternate" type="text/html" href="?title=WPA_Supplicant&amp;diff=18904"/>
		<updated>2009-08-20T08:42:21Z</updated>

		<summary type="html">&lt;p&gt;Tiramisu: /* 64Bit */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Download Source:&lt;br /&gt;
| http://hostap.epitest.fi/releases/wpa_supplicant-{{wpa_supplicant-Version}}.tar.gz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Package-Introduction|WPA Supplicant is a daemon which allows a wireless card to associate with a network using WEP/WPA/WPA2 (IEEE 802.11i / RSN) networks.  The actual daemon (wpa_supplicant) parses a config file which declares networks to scan for and keys to use for authentication. The networks scanned can be referenced by MAC or SSID.  If nothing is declared it&#039;ll associate with the strongest open network. | http://hostap.epitest.fi/wpa_supplicant/}}&lt;br /&gt;
&lt;br /&gt;
{{Note|WPA Supplicant DOES NOT AND WILL NEVER HAVE ANYTHING TO DO WITH IP/GATEWAY/DNS ASSIGNMENT.  So don&#039;t ask about it.  Refer any questions on that subject to dhcpcd and/or ifplugd and co. }}&lt;br /&gt;
== Dependencies ==&lt;br /&gt;
=== Optional ===&lt;br /&gt;
* [[D-BUS]]&lt;br /&gt;
=== Optional Drivers ===&lt;br /&gt;
* [[MadWifi]]&lt;br /&gt;
* [[NdisWrapper]]&lt;br /&gt;
&lt;br /&gt;
== Configuration Information ==&lt;br /&gt;
&lt;br /&gt;
You need to create a &#039;&#039;&#039;.config&#039;&#039;&#039; file based on &#039;&#039;&#039;defconfig&#039;&#039;&#039; in the top-level of the source directory. The &#039;&#039;&#039;README&#039;&#039;&#039; has a lot of good information regarding creating a config.&lt;br /&gt;
&lt;br /&gt;
 cp defconfig .config &amp;amp;&amp;amp;&lt;br /&gt;
 cat &amp;gt;&amp;gt; .config &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot; &lt;br /&gt;
 CONFIG_DRIVER_MADWIFI=y&lt;br /&gt;
 CFLAGS += -I/path/to/madwifi/source&lt;br /&gt;
 CONFIG_CTRL_IFACE_DBUS=y&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 cp -v wpa_cli wpa_supplicant wpa_passphrase /usr/sbin&lt;br /&gt;
&lt;br /&gt;
If you have [[D-BUS]] installed execute the following commands to add the configuration and services files for [[D-BUS]]:&lt;br /&gt;
&lt;br /&gt;
 cp -v dbus-wpa_supplicant.conf /etc/dbus-1/system.d/ &amp;amp;&amp;amp;&lt;br /&gt;
 cp -v dbus-wpa_supplicant.service /usr/share/dbus-1/services/&lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;This package does not install any libraries so only one installation is needed.&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
 Please Contribute this section.&lt;br /&gt;
&lt;br /&gt;
=== N32 ===&lt;br /&gt;
&lt;br /&gt;
 Please Contribute this section.&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
 CC=&amp;quot;gcc ${BUILD64}&amp;quot; make &amp;amp;&amp;amp;&lt;br /&gt;
 cp wpa_cli wpa_supplicant wpa_passphrase /usr/sbin&lt;br /&gt;
&lt;br /&gt;
[[Category:Network Utilities]]&lt;/div&gt;</summary>
		<author><name>Tiramisu</name></author>
	</entry>
	<entry>
		<id>?title=WPA_Supplicant&amp;diff=18903</id>
		<title>WPA Supplicant</title>
		<link rel="alternate" type="text/html" href="?title=WPA_Supplicant&amp;diff=18903"/>
		<updated>2009-08-20T08:40:38Z</updated>

		<summary type="html">&lt;p&gt;Tiramisu: /* 64Bit */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Download Source:&lt;br /&gt;
| http://hostap.epitest.fi/releases/wpa_supplicant-{{wpa_supplicant-Version}}.tar.gz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Package-Introduction|WPA Supplicant is a daemon which allows a wireless card to associate with a network using WEP/WPA/WPA2 (IEEE 802.11i / RSN) networks.  The actual daemon (wpa_supplicant) parses a config file which declares networks to scan for and keys to use for authentication. The networks scanned can be referenced by MAC or SSID.  If nothing is declared it&#039;ll associate with the strongest open network. | http://hostap.epitest.fi/wpa_supplicant/}}&lt;br /&gt;
&lt;br /&gt;
{{Note|WPA Supplicant DOES NOT AND WILL NEVER HAVE ANYTHING TO DO WITH IP/GATEWAY/DNS ASSIGNMENT.  So don&#039;t ask about it.  Refer any questions on that subject to dhcpcd and/or ifplugd and co. }}&lt;br /&gt;
== Dependencies ==&lt;br /&gt;
=== Optional ===&lt;br /&gt;
* [[D-BUS]]&lt;br /&gt;
=== Optional Drivers ===&lt;br /&gt;
* [[MadWifi]]&lt;br /&gt;
* [[NdisWrapper]]&lt;br /&gt;
&lt;br /&gt;
== Configuration Information ==&lt;br /&gt;
&lt;br /&gt;
You need to create a &#039;&#039;&#039;.config&#039;&#039;&#039; file based on &#039;&#039;&#039;defconfig&#039;&#039;&#039; in the top-level of the source directory. The &#039;&#039;&#039;README&#039;&#039;&#039; has a lot of good information regarding creating a config.&lt;br /&gt;
&lt;br /&gt;
 cp defconfig .config &amp;amp;&amp;amp;&lt;br /&gt;
 cat &amp;gt;&amp;gt; .config &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot; &lt;br /&gt;
 CONFIG_DRIVER_MADWIFI=y&lt;br /&gt;
 CFLAGS += -I/path/to/madwifi/source&lt;br /&gt;
 CONFIG_CTRL_IFACE_DBUS=y&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 cp -v wpa_cli wpa_supplicant wpa_passphrase /usr/sbin&lt;br /&gt;
&lt;br /&gt;
If you have [[D-BUS]] installed execute the following commands to add the configuration and services files for [[D-BUS]]:&lt;br /&gt;
&lt;br /&gt;
 cp -v dbus-wpa_supplicant.conf /etc/dbus-1/system.d/ &amp;amp;&amp;amp;&lt;br /&gt;
 cp -v dbus-wpa_supplicant.service /usr/share/dbus-1/services/&lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&#039;&#039;&#039;&#039;&#039;This package does not install any libraries so only one installation is needed.&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
 Please Contribute this section.&lt;br /&gt;
&lt;br /&gt;
=== N32 ===&lt;br /&gt;
&lt;br /&gt;
 Please Contribute this section.&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
CC=&amp;quot;gcc ${BUILD64}&amp;quot; make &amp;amp;&amp;amp;&lt;br /&gt;
cp wpa_cli wpa_supplicant wpa_passphrase /usr/sbin&lt;br /&gt;
&lt;br /&gt;
[[Category:Network Utilities]]&lt;/div&gt;</summary>
		<author><name>Tiramisu</name></author>
	</entry>
	<entry>
		<id>?title=Dhcp&amp;diff=18902</id>
		<title>Dhcp</title>
		<link rel="alternate" type="text/html" href="?title=Dhcp&amp;diff=18902"/>
		<updated>2009-08-20T08:31:30Z</updated>

		<summary type="html">&lt;p&gt;Tiramisu: /* N32 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Download Source:&lt;br /&gt;
| http://ftp.isc.org/isc/dhcp/dhcp-3.1-history/dhcp-{{Dhcp-Version}}.tar.gz&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Download Patch: &lt;br /&gt;
| http://svn.cross-lfs.org/svn/repos/patches/dhcp/dhcp-{{Dhcp-Version}}-iproute2-1.patch&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{{Package-Introduction|The DHCP package contains both the client and server programs for DHCP. &#039;&#039;&#039;dhclient&#039;&#039;&#039; (the client) is useful for connecting your computer to a network which uses DHCP to assign network addresses. &#039;&#039;&#039;dhcpd&#039;&#039;&#039; (the server) is useful for assigning network addresses on your private network.}}&lt;br /&gt;
&lt;br /&gt;
== Dependencies ==&lt;br /&gt;
&lt;br /&gt;
=== Required (If not using the iproute2 patch) ===&lt;br /&gt;
* [[NetTools]]&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 patch -Np1 -i ../dhcp-{{Dhcp-Version}}-iproute2-1.patch &amp;amp;&amp;amp;&lt;br /&gt;
 ./configure &amp;amp;&amp;amp;&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make LIBDIR=/usr/lib INCDIR=/usr/include install&lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 patch -Np1 -i ../dhcp-{{Dhcp-Version}}-iproute2-1.patch &amp;amp;&amp;amp;&lt;br /&gt;
 ./configure &amp;amp;&amp;amp;&lt;br /&gt;
 make CC=&amp;quot;gcc ${BUILD32}&amp;quot; &amp;amp;&amp;amp;&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make LIBDIR=/usr/lib INCDIR=/usr/include install&lt;br /&gt;
&lt;br /&gt;
=== N32 ===&lt;br /&gt;
&lt;br /&gt;
Compile the package&lt;br /&gt;
&lt;br /&gt;
 patch -Np1 -i ../dhcp-{{Dhcp-Version}}-iproute2-1.patch&lt;br /&gt;
 ./configure &amp;amp;&amp;amp;&lt;br /&gt;
 make CC=&amp;quot;gcc ${BUILDN32}&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make LIBDIR=/usr/lib32 INCDIR=/usr/include install&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package&lt;br /&gt;
&lt;br /&gt;
 patch -Np1 -i ../dhcp-{{Dhcp-Version}}-iproute2-1.patch&lt;br /&gt;
 ./configure &amp;amp;&amp;amp;&lt;br /&gt;
 make CC=&amp;quot;gcc ${BUILD64}&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make LIBDIR=/usr/lib64 INCDIR=/usr/include install&lt;br /&gt;
&lt;br /&gt;
== Configuring ==&lt;br /&gt;
&lt;br /&gt;
 touch /var/state/dhcp/dhcpd.leases&lt;br /&gt;
 &lt;br /&gt;
 cat &amp;gt; /etc/dhcpd.conf &amp;lt;&amp;lt; &amp;quot;EOF&amp;quot;&lt;br /&gt;
 allow unknown-clients;&lt;br /&gt;
 server-identifier 192.168.1.254;&lt;br /&gt;
 ddns-update-style interim;&lt;br /&gt;
 &lt;br /&gt;
 subnet 192.168.1.0 netmask 255.255.255.0 {&lt;br /&gt;
 option broadcast-address 192.168.1.255;&lt;br /&gt;
 range 192.168.1.100 192.168.1.200;&lt;br /&gt;
 default-lease-time 86400;&lt;br /&gt;
 max-lease-time 86400;&lt;br /&gt;
 option subnet-mask 255.255.255.0;&lt;br /&gt;
 option domain-name-servers DNS_SERVER_NAMES;&lt;br /&gt;
 option routers 192.168.1.254;&lt;br /&gt;
 }&lt;br /&gt;
 EOF&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== BootScript ===&lt;br /&gt;
&lt;br /&gt;
Install the init script included in the [[bootscripts]] package.&lt;br /&gt;
&lt;br /&gt;
 make install-dhcp&lt;br /&gt;
&lt;br /&gt;
{{Note|Make sure to change the adapter for dhcp in the bootscript}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Servers]]&lt;/div&gt;</summary>
		<author><name>Tiramisu</name></author>
	</entry>
	<entry>
		<id>?title=Unzip&amp;diff=18901</id>
		<title>Unzip</title>
		<link rel="alternate" type="text/html" href="?title=Unzip&amp;diff=18901"/>
		<updated>2009-08-20T05:34:12Z</updated>

		<summary type="html">&lt;p&gt;Tiramisu: /* 64Bit */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
!Download Source:&lt;br /&gt;
| ftp://ftp.info-zip.org/pub/infozip/src/unzip{{Unzip-Version}}.tgz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
{{Package-Introduction|UnZip is an extraction utility for archives compressed in .zip format.|http://www.info-zip.org/UnZip.html}}&lt;br /&gt;
&lt;br /&gt;
== Dependencies ==&lt;br /&gt;
&lt;br /&gt;
== Unzip Locale Related Issues ==&lt;br /&gt;
&lt;br /&gt;
{{Note|Use of UnZip in the JDK, Mozilla, DocBook or any other CBLFS package installation is not a problem, as CBLFS instructions never use UnZip to extract a file with non-ASCII characters in the file&#039;s name.}}&lt;br /&gt;
&lt;br /&gt;
The UnZip package assumes that filenames stored in the ZIP archives created on non-Unix systems are encoded in CP850, and that they should be converted to ISO-8859-1 when writing files onto the filesystem. Such assumptions are not always valid. In fact, inside the ZIP archive, filenames are encoded in the DOS codepage that is in use in the relevant country, and the filenames on disk should be in the locale encoding. In MS Windows, the OemToChar() C function (from User32.DLL) does the correct conversion (which is indeed the conversion from CP850 to a superset of ISO-8859-1 if MS Windows is set up to use the US English language), but there is no equivalent in Linux. &lt;br /&gt;
&lt;br /&gt;
When using unzip to unpack a ZIP archive containing non-ASCII filenames, the filenames are damaged because unzip uses improper conversion when any of its encoding assumptions are incorrect. For example, in the ru_RU.KOI8-R locale, conversion of filenames from CP866 to KOI8-R is required, but conversion from CP850 to ISO-8859-1 is done, which produces filenames consisting of undecipherable characters instead of words (the closest equivalent understandable example for English-only users is rot13). There are several ways around this limitation:&lt;br /&gt;
&lt;br /&gt;
1) For unpacking ZIP archives with filenames containing non-ASCII characters, use WinZip while- running the Wine Windows emulator.&lt;br /&gt;
&lt;br /&gt;
2) After running unzip, fix the damage made to the filenames using the [http://j3e.de/linux/convmv/ convmv tool]. The following is an example for the ru_RU.KOI8-R locale: &lt;br /&gt;
&lt;br /&gt;
Step 1. Undo the conversion done by unzip: &lt;br /&gt;
 convmv -f iso-8859-1 -t cp850 -r --nosmart --notest \&lt;br /&gt;
    &amp;lt;/path/to/unzipped/files&amp;gt;&lt;br /&gt;
Step 2. Do the correct conversion instead: &lt;br /&gt;
 convmv -f cp866 -t koi8-r -r --nosmart --notest \&lt;br /&gt;
    &amp;lt;/path/to/unzipped/files&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3) Apply this patch to unzip: https://bugzilla.altlinux.ru/attachment.cgi?id=532 &lt;br /&gt;
&lt;br /&gt;
It allows to specify the assumed filename encoding in the ZIP archive using the -O charset_name option and the on-disk filename encoding using the -I charset_name option. Defaults: the on-disk filename encoding is the locale encoding, the encoding inside the ZIP archive is guessed according to the builtin table based on the locale encoding. For US English users, this still means that unzip converts from CP850 to ISO-8859-1 by default. &lt;br /&gt;
&lt;br /&gt;
Caveat: this method works only with 8-bit locale encodings, not with UTF-8. Attempting to use a patched unzip in UTF-8 locales may result in a segmentation fault and is probably a security risk.&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 make -f unix/Makefile generic CC=&amp;quot;gcc -DUSE_BZIP2 -lbz2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make -f unix/Makefile prefix=/usr install&lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 make -f unix/Makefile generic CC=&amp;quot;gcc ${BUILD32} -DUSE_BZIP2 -lbz2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make -f unix/Makefile prefix=/usr install&lt;br /&gt;
&lt;br /&gt;
=== N32 ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 make -f unix/Makefile generic CC=&amp;quot;gcc ${BUILDN32} -DUSE_BZIP2 -lbz2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make -f unix/Makefile prefix=/usr install&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 make -f unix/Makefile generic CC=&amp;quot;gcc ${BUILD64} -DUSE_BZIP2 -lbz2&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Install the package&lt;br /&gt;
&lt;br /&gt;
 make -f unix/Makefile prefix=/usr install&lt;br /&gt;
&lt;br /&gt;
= Contents =&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;text-align: left;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
!Installed Programs:&lt;br /&gt;
|funzip, unzip, unzipfsx, zipgrep, and zipinfo&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
!Installed Libraries:&lt;br /&gt;
|libunzip.so&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
!Installed Directories:&lt;br /&gt;
|None&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Short Descriptions ===&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;text-align: left;&amp;quot;&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
!funzip&lt;br /&gt;
|allows the output of &#039;&#039;&#039;unzip&#039;&#039;&#039; commands to be redirected. &lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
!unzip&lt;br /&gt;
|lists, tests or extracts files from a ZIP archive. &lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
!unzipfsx&lt;br /&gt;
|is a self-extracting stub that can be prepended to a ZIP archive. Files in this format allow the recipient to decompress the archive without installing UnZip. &lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
!zipgrep&lt;br /&gt;
|searches files in a ZIP archive for lines matching a pattern. &lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
!zipinfo&lt;br /&gt;
|produces technical information about the files in a ZIP archive, including file access permissions, encryption status, type of compression, etc. &lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
!libunzip.so&lt;br /&gt;
|contains the API functions required by the UnZip programs.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:General Utilities]]&lt;/div&gt;</summary>
		<author><name>Tiramisu</name></author>
	</entry>
	<entry>
		<id>?title=Xaw3d&amp;diff=14180</id>
		<title>Xaw3d</title>
		<link rel="alternate" type="text/html" href="?title=Xaw3d&amp;diff=14180"/>
		<updated>2008-05-16T19:23:37Z</updated>

		<summary type="html">&lt;p&gt;Tiramisu: /* Multilib */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;text-align: left; background-color: AliceBlue;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Download Source:&lt;br /&gt;
| ftp://ftp.visi.com/users/hawkeyd/X/Xaw3d-{{Xaw3d-Version}}.tar.gz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Xaw3d-1.5E.tar.gz&#039;&#039;&#039; will extract into &#039;&#039;&#039;xc/lib/Xaw3d&#039;&#039;&#039;. &#039;&#039;&#039;cd&#039;&#039;&#039; into that directory before running the commands in this page.&lt;br /&gt;
&lt;br /&gt;
{{Package-Introduction|Xaw3d is a general-purpose replacement for the Athena toolkit which adds a 3D appearance and support for XPM images.}}&lt;br /&gt;
&lt;br /&gt;
== Dependencies ==&lt;br /&gt;
&lt;br /&gt;
=== Required ===&lt;br /&gt;
* [[X Window System]]&lt;br /&gt;
&lt;br /&gt;
== Non-Multilib ==&lt;br /&gt;
&lt;br /&gt;
Install header files&lt;br /&gt;
 mkdir /usr/X11/include/Xaw3d&lt;br /&gt;
 cp *.h /usr/X11/include/Xaw3d&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 sed -i &amp;quot;s:X11/Xaw3d/::&amp;quot; *.c &amp;amp;&amp;amp;&lt;br /&gt;
 xmkmf &amp;amp;&amp;amp;&lt;br /&gt;
 make EXTRA_INCLUDES=-I.&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
== Multilib ==&lt;br /&gt;
&lt;br /&gt;
Install header files&lt;br /&gt;
&lt;br /&gt;
 mkdir /usr/X11/include/Xaw3d &amp;amp;&amp;amp;&lt;br /&gt;
 cp *.h /usr/X11/include/Xaw3d&lt;br /&gt;
&lt;br /&gt;
=== 32Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 sed -i &amp;quot;s:X11/Xaw3d/::&amp;quot; *.c &amp;amp;&amp;amp;&lt;br /&gt;
 USE_ARCH=32 xmkmf &amp;amp;&amp;amp;&lt;br /&gt;
 make EXTRA_INCLUDES=-I.&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
=== N32 ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 sed -i &amp;quot;s:X11/Xaw3d/::&amp;quot; *.c &amp;amp;&amp;amp;&lt;br /&gt;
 USE_ARCH=n32 xmkmf &amp;amp;&amp;amp;&lt;br /&gt;
 make EXTRA_INCLUDES=-I.&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
=== 64Bit ===&lt;br /&gt;
&lt;br /&gt;
Compile the package:&lt;br /&gt;
&lt;br /&gt;
 sed -i &amp;quot;s:X11/Xaw3d/::&amp;quot; *.c &amp;amp;&amp;amp;&lt;br /&gt;
 USE_ARCH=64 xmkmf &amp;amp;&amp;amp;&lt;br /&gt;
 make EXTRA_INCLUDES=-I.&lt;br /&gt;
&lt;br /&gt;
Install the package:&lt;br /&gt;
&lt;br /&gt;
 make install&lt;/div&gt;</summary>
		<author><name>Tiramisu</name></author>
	</entry>
</feed>