<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Gentoo Overlay</title>
	<atom:link href="http://www.brandonturner.net/blog/gentoo-overlay/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brandonturner.net/blog</link>
	<description>Random thoughts on web applications, software development and Linux</description>
	<lastBuildDate>Wed, 11 Jan 2012 03:58:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Brandon</title>
		<link>http://www.brandonturner.net/blog/gentoo-overlay/comment-page-1/#comment-7251</link>
		<dc:creator>Brandon</dc:creator>
		<pubDate>Mon, 02 Jan 2012 22:28:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonturner.net/blog/?page_id=229#comment-7251</guid>
		<description>&lt;a href=&quot;#comment-7250&quot; rel=&quot;nofollow&quot;&gt;@gusans&lt;/a&gt; Sorry about that.  The overlay should be back now.</description>
		<content:encoded><![CDATA[<p><a href="#comment-7250" rel="nofollow">@gusans</a> Sorry about that.  The overlay should be back now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gusans</title>
		<link>http://www.brandonturner.net/blog/gentoo-overlay/comment-page-1/#comment-7250</link>
		<dc:creator>gusans</dc:creator>
		<pubDate>Tue, 27 Dec 2011 14:39:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonturner.net/blog/?page_id=229#comment-7250</guid>
		<description>First, thanks for this overlay and blog. worked perfectly for me.

now, i have recently re-installed my Gentoo box, and triyng to setup this overlay again (it was working very well before) and failed connecting to http://svn.bltweb.net
wan&#039;t to know if this is a temporary problem, or you just moved somewhere else the overlay.

thanks again.</description>
		<content:encoded><![CDATA[<p>First, thanks for this overlay and blog. worked perfectly for me.</p>
<p>now, i have recently re-installed my Gentoo box, and triyng to setup this overlay again (it was working very well before) and failed connecting to <a href="http://svn.bltweb.net" rel="nofollow">http://svn.bltweb.net</a><br />
wan&#8217;t to know if this is a temporary problem, or you just moved somewhere else the overlay.</p>
<p>thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dani Church</title>
		<link>http://www.brandonturner.net/blog/gentoo-overlay/comment-page-1/#comment-7211</link>
		<dc:creator>Dani Church</dc:creator>
		<pubDate>Mon, 28 Feb 2011 20:57:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonturner.net/blog/?page_id=229#comment-7211</guid>
		<description>Thanks for the blog and the overlay!  I wanted to toss a couple things your way, modifications I&#039;ve made to your qmail-jms1 ebuild.  First is a pretty heinous bug which causes segfaults in qmail-*spawn on 64-bit systems, here&#039;s the fix (you can bundle it in with undefined-functions.patch):

--- qmail-1.03/spawn.c.orig     2011-02-27 20:22:30.190909315 -0500
+++ qmail-1.03/spawn.c  2011-02-27 20:22:38.734759747 -0500
@@ -5,6 +5,7 @@
 #include &quot;substdio.h&quot;
 #include &quot;byte.h&quot;
 #include &quot;str.h&quot;
+#include &quot;alloc.h&quot;
 #include &quot;stralloc.h&quot;
 #include &quot;select.h&quot;
 #include &quot;exit.h&quot;

The other is a section I added to src_prepare to prevent qmail-jms1 from using the same filenames for man pages as a couple other packages:

    mv &quot;${S}&quot;/maildir.5 &quot;${S}&quot;/qmail-maildir.5
    sed -i &#039;s/TH maildir/TH qmail-maildir/&#039; &quot;${S}&quot;/qmail-maildir.5
    sed -i &#039;s/maildir\.[05]/qmail-/g&#039; &quot;${S}&quot;/Makefile
    mv &quot;${S}&quot;/maildirmake.1 &quot;${S}&quot;/qmail-maildirmake.1
    sed -i &#039;s/TH maildirmake/TH qmail-maildirmake/&#039; &quot;${S}&quot;/qmail-maildirmake.1
    sed -i &#039;s/maildirmake\.[01]/qmail-/g&#039; &quot;${S}&quot;/Makefile

Again, thank you so much!  Your blog entries have been invaluable, and I really appreciate how your DKIM patch works, it seems like so much less of a kludge.</description>
		<content:encoded><![CDATA[<p>Thanks for the blog and the overlay!  I wanted to toss a couple things your way, modifications I&#8217;ve made to your qmail-jms1 ebuild.  First is a pretty heinous bug which causes segfaults in qmail-*spawn on 64-bit systems, here&#8217;s the fix (you can bundle it in with undefined-functions.patch):</p>
<p>&#8212; qmail-1.03/spawn.c.orig     2011-02-27 20:22:30.190909315 -0500<br />
+++ qmail-1.03/spawn.c  2011-02-27 20:22:38.734759747 -0500<br />
@@ -5,6 +5,7 @@<br />
 #include &#8220;substdio.h&#8221;<br />
 #include &#8220;byte.h&#8221;<br />
 #include &#8220;str.h&#8221;<br />
+#include &#8220;alloc.h&#8221;<br />
 #include &#8220;stralloc.h&#8221;<br />
 #include &#8220;select.h&#8221;<br />
 #include &#8220;exit.h&#8221;</p>
<p>The other is a section I added to src_prepare to prevent qmail-jms1 from using the same filenames for man pages as a couple other packages:</p>
<p>    mv &#8220;${S}&#8221;/maildir.5 &#8220;${S}&#8221;/qmail-maildir.5<br />
    sed -i &#8216;s/TH maildir/TH qmail-maildir/&#8217; &#8220;${S}&#8221;/qmail-maildir.5<br />
    sed -i &#8216;s/maildir\.[05]/qmail-/g&#8217; &#8220;${S}&#8221;/Makefile<br />
    mv &#8220;${S}&#8221;/maildirmake.1 &#8220;${S}&#8221;/qmail-maildirmake.1<br />
    sed -i &#8216;s/TH maildirmake/TH qmail-maildirmake/&#8217; &#8220;${S}&#8221;/qmail-maildirmake.1<br />
    sed -i &#8216;s/maildirmake\.[01]/qmail-/g&#8217; &#8220;${S}&#8221;/Makefile</p>
<p>Again, thank you so much!  Your blog entries have been invaluable, and I really appreciate how your DKIM patch works, it seems like so much less of a kludge.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JoXP</title>
		<link>http://www.brandonturner.net/blog/gentoo-overlay/comment-page-1/#comment-7199</link>
		<dc:creator>JoXP</dc:creator>
		<pubDate>Fri, 01 Oct 2010 09:14:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonturner.net/blog/?page_id=229#comment-7199</guid>
		<description>Dont forget the below config to make the overlay work, and packages to be found.

(for layman 1.1)
# echo &quot;source /usr/portage/local/layman/make.conf&quot; &gt;&gt; /etc/make.conf

(for layman 1.2)
# echo &quot;source /usr/local/portage/layman/make.conf&quot; &gt;&gt; /etc/make.conf

(for layman 1.3)
# echo &quot;source /var/lib/layman/make.conf&quot; &gt;&gt; /etc/make.conf

Cheers</description>
		<content:encoded><![CDATA[<p>Dont forget the below config to make the overlay work, and packages to be found.</p>
<p>(for layman 1.1)<br />
# echo &#8220;source /usr/portage/local/layman/make.conf&#8221; &gt;&gt; /etc/make.conf</p>
<p>(for layman 1.2)<br />
# echo &#8220;source /usr/local/portage/layman/make.conf&#8221; &gt;&gt; /etc/make.conf</p>
<p>(for layman 1.3)<br />
# echo &#8220;source /var/lib/layman/make.conf&#8221; &gt;&gt; /etc/make.conf</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pierre</title>
		<link>http://www.brandonturner.net/blog/gentoo-overlay/comment-page-1/#comment-7137</link>
		<dc:creator>Pierre</dc:creator>
		<pubDate>Mon, 29 Mar 2010 12:43:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonturner.net/blog/?page_id=229#comment-7137</guid>
		<description>Sorry, used a different overlay, work perfectly!</description>
		<content:encoded><![CDATA[<p>Sorry, used a different overlay, work perfectly!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: radio</title>
		<link>http://www.brandonturner.net/blog/gentoo-overlay/comment-page-1/#comment-7066</link>
		<dc:creator>radio</dc:creator>
		<pubDate>Sat, 20 Mar 2010 16:03:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonturner.net/blog/?page_id=229#comment-7066</guid>
		<description>solution:

# echo \FEATURES=userpriv\ &gt;&gt; /etc/make.conf
# emerge -vD php</description>
		<content:encoded><![CDATA[<p>solution:</p>
<p># echo \FEATURES=userpriv\ &gt;&gt; /etc/make.conf<br />
# emerge -vD php</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pierre</title>
		<link>http://www.brandonturner.net/blog/gentoo-overlay/comment-page-1/#comment-7008</link>
		<dc:creator>Pierre</dc:creator>
		<pubDate>Wed, 17 Mar 2010 13:41:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonturner.net/blog/?page_id=229#comment-7008</guid>
		<description>No same problem :s
It&#039;s a x86 system (~x86 keyword added for php in package.keywords)</description>
		<content:encoded><![CDATA[<p>No same problem :s<br />
It&#8217;s a x86 system (~x86 keyword added for php in package.keywords)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pierre</title>
		<link>http://www.brandonturner.net/blog/gentoo-overlay/comment-page-1/#comment-7003</link>
		<dc:creator>Pierre</dc:creator>
		<pubDate>Wed, 17 Mar 2010 09:52:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonturner.net/blog/?page_id=229#comment-7003</guid>
		<description>yes I try as root, 
if I try : ln -s /usr/lib/c-client.a /usr/lib/libc-client.a
it show that the file exist.
I &#039;m trying to del all symbolic link and emerge php again</description>
		<content:encoded><![CDATA[<p>yes I try as root,<br />
if I try : ln -s /usr/lib/c-client.a /usr/lib/libc-client.a<br />
it show that the file exist.<br />
I &#8216;m trying to del all symbolic link and emerge php again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brandon</title>
		<link>http://www.brandonturner.net/blog/gentoo-overlay/comment-page-1/#comment-6948</link>
		<dc:creator>Brandon</dc:creator>
		<pubDate>Mon, 15 Mar 2010 13:14:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonturner.net/blog/?page_id=229#comment-6948</guid>
		<description>Did you try emerging as root?  The error message you posted indicated you couldn&#039;t create a symbolic link in /usr/lib.</description>
		<content:encoded><![CDATA[<p>Did you try emerging as root?  The error message you posted indicated you couldn&#8217;t create a symbolic link in /usr/lib.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pierre</title>
		<link>http://www.brandonturner.net/blog/gentoo-overlay/comment-page-1/#comment-6944</link>
		<dc:creator>Pierre</dc:creator>
		<pubDate>Mon, 15 Mar 2010 08:52:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.brandonturner.net/blog/?page_id=229#comment-6944</guid>
		<description>Same problem 
This is the log :
&gt;&gt;&gt; Source compiled.
--------------------------- ACCESS VIOLATION SUMMARY ---------------------------
LOG FILE &quot;/var/log/sandbox/sandbox-10808.log&quot;

VERSION 1.0
FORMAT: F - Function called
FORMAT: S - Access Status
FORMAT: P - Path as passed to function
FORMAT: A - Absolute Path (not canonical)
FORMAT: R - Canonical Path
FORMAT: C - Command Line

F: symlink
S: deny
P: /usr/lib/libc-client.a
A: /usr/lib/libc-client.a
R: /usr/lib/c-client.a
C: ln -s /usr/lib/c-client.a /usr/lib/libc-client.a

F: symlink
S: deny
P: /usr/lib/libc-client.a
A: /usr/lib/libc-client.a
R: /usr/lib/c-client.a
C: ln -s /usr/lib/c-client.a /usr/lib/libc-client.a

F: symlink
S: deny
P: /usr/lib/libc-client.a
A: /usr/lib/libc-client.a
R: /usr/lib/c-client.a
C: ln -s /usr/lib/c-client.a /usr/lib/libc-client.a
--------------------------------------------------------------------------------

&gt;&gt;&gt; Failed to emerge dev-lang/php-5.3.2, Log file:

&gt;&gt;&gt;  &#039;/var/tmp/portage/dev-lang/php-5.3.2/temp/build.log&#039;

 * Messages for package dev-lang/php-5.3.2:

 * There is no multilib-strict patch available for this PHP release yet!
 * Enabling ZTS for Apache2 MPM
 * Enabling ZTS for Apache2 MPM
 * Enabling ZTS for Apache2 MPM

And use flag :

dev-lang/php-5.3.2 [5.2.12] USE=&quot;apache2 berkdb bzip2 calendar cgi cli crypt ctype curl gd gdbm hash iconv imap ipv6 json ldap mysql nls readline session simplexml snmp soap sockets ssl threads truetype unicode xml zip zlib -adabas -bcmath -birdstep -cdb -cjk -concurrentmodphp -curlwrappers -db2 -dbmaker -debug -doc -empress -empress-bcs -enchant% -esoob -exif -fastbuild -fileinfo% -filter -firebird -flatfile -ftp -gd-external -gmp -inifile -interbase -intl% -iodbc (-java-external) -kerberos -kolab -ldap-sasl -libedit -mcve -mhash -mssql -mysqli -mysqlnd% -oci8 -oci8-instant-client -odbc -pcntl -pdo -phar% -pic -posix -postgres -qdbm -recode -sapdb -sharedext -sharedmem -solid -spell -sqlite -sqlite3% -suhosin -sybase-ct -sysvipc -tidy -tokenizer -wddx -xmlreader -xmlrpc -xmlwriter -xpm -xsl -yaz (-dbase%) (-discard-path%) (-fdftk%) (-force-cgi-redirect%) (-frontbase%) (-msql%) (-ncurses%*) (-pcre%*) (-reflection%*) (-spl%*) (-sybase%)&quot; 0 kB [0=&gt;1]

Any solution?</description>
		<content:encoded><![CDATA[<p>Same problem<br />
This is the log :<br />
&gt;&gt;&gt; Source compiled.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; ACCESS VIOLATION SUMMARY &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
LOG FILE &#8220;/var/log/sandbox/sandbox-10808.log&#8221;</p>
<p>VERSION 1.0<br />
FORMAT: F &#8211; Function called<br />
FORMAT: S &#8211; Access Status<br />
FORMAT: P &#8211; Path as passed to function<br />
FORMAT: A &#8211; Absolute Path (not canonical)<br />
FORMAT: R &#8211; Canonical Path<br />
FORMAT: C &#8211; Command Line</p>
<p>F: symlink<br />
S: deny<br />
P: /usr/lib/libc-client.a<br />
A: /usr/lib/libc-client.a<br />
R: /usr/lib/c-client.a<br />
C: ln -s /usr/lib/c-client.a /usr/lib/libc-client.a</p>
<p>F: symlink<br />
S: deny<br />
P: /usr/lib/libc-client.a<br />
A: /usr/lib/libc-client.a<br />
R: /usr/lib/c-client.a<br />
C: ln -s /usr/lib/c-client.a /usr/lib/libc-client.a</p>
<p>F: symlink<br />
S: deny<br />
P: /usr/lib/libc-client.a<br />
A: /usr/lib/libc-client.a<br />
R: /usr/lib/c-client.a<br />
C: ln -s /usr/lib/c-client.a /usr/lib/libc-client.a<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>&gt;&gt;&gt; Failed to emerge dev-lang/php-5.3.2, Log file:</p>
<p>&gt;&gt;&gt;  &#8216;/var/tmp/portage/dev-lang/php-5.3.2/temp/build.log&#8217;</p>
<p> * Messages for package dev-lang/php-5.3.2:</p>
<p> * There is no multilib-strict patch available for this PHP release yet!<br />
 * Enabling ZTS for Apache2 MPM<br />
 * Enabling ZTS for Apache2 MPM<br />
 * Enabling ZTS for Apache2 MPM</p>
<p>And use flag :</p>
<p>dev-lang/php-5.3.2 [5.2.12] USE=&#8221;apache2 berkdb bzip2 calendar cgi cli crypt ctype curl gd gdbm hash iconv imap ipv6 json ldap mysql nls readline session simplexml snmp soap sockets ssl threads truetype unicode xml zip zlib -adabas -bcmath -birdstep -cdb -cjk -concurrentmodphp -curlwrappers -db2 -dbmaker -debug -doc -empress -empress-bcs -enchant% -esoob -exif -fastbuild -fileinfo% -filter -firebird -flatfile -ftp -gd-external -gmp -inifile -interbase -intl% -iodbc (-java-external) -kerberos -kolab -ldap-sasl -libedit -mcve -mhash -mssql -mysqli -mysqlnd% -oci8 -oci8-instant-client -odbc -pcntl -pdo -phar% -pic -posix -postgres -qdbm -recode -sapdb -sharedext -sharedmem -solid -spell -sqlite -sqlite3% -suhosin -sybase-ct -sysvipc -tidy -tokenizer -wddx -xmlreader -xmlrpc -xmlwriter -xpm -xsl -yaz (-dbase%) (-discard-path%) (-fdftk%) (-force-cgi-redirect%) (-frontbase%) (-msql%) (-ncurses%*) (-pcre%*) (-reflection%*) (-spl%*) (-sybase%)&#8221; 0 kB [0=&gt;1]</p>
<p>Any solution?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

