Samba doesn't compile when kerberos is installed because of a name clash with one of the includes. (This issue is actually described in the docs that come with the tarball). I made the following adjustment in the ebuild file: --- samba-2.2.2-r6.ebuild Fri Dec 14 16:09:35 2001 +++ samba-2.2.2-r7.ebuild Sun Jan 27 21:22:30 2002 @@ -38,6 +38,12 @@ sed -e "s:AC_CHECK_LIB(cups,httpConnect)::" configure.in.orig > configure.in autoconf || die fi + cd ${S}/source/include + if [ -f profile.h ]; then + mv profile.h smbprofile.h + sed -e "s:profile\.h:smbprofile.h:" includes.h >includes.h.new + mv includes.h.new includes.h + fi } src_compile() {
added to the ebuild. thanks for the report ;)
Closing the bug