homebrew-core/Formula/samba.rb
2015-02-26 11:21:53 +00:00

93 lines
2.8 KiB
Ruby

class Samba < Formula
homepage "https://samba.org/"
url "https://download.samba.org/pub/samba/stable/samba-3.6.25.tar.gz"
sha1 "86fbfcfe80454cc7dbe510e7d58c02922cac3efa"
bottle do
sha1 "d573b77cb2f4187d366e6a5314982661089c91bf" => :yosemite
sha1 "2b74fcea8edca1c15e597fd469d682ccee558a9c" => :mavericks
sha1 "32546ed646eec7798f25d18c3bce9d5fef23da06" => :mountain_lion
end
conflicts_with "talloc", :because => "both install `include/talloc.h`"
skip_clean "private"
skip_clean "var/locks"
# Fixes the Grouplimit of 16 users os OS X.
# Bug has been raised upstream:
# https://bugzilla.samba.org/show_bug.cgi?id=8773
patch :DATA
def install
cd "source3" do
# This stops samba dumping .msg and .dat files directly into lib
# It can't be set with a configure switch - There isn't one that fine-grained.
# https://bugzilla.samba.org/show_bug.cgi?id=11120
inreplace "configure", "${MODULESDIR}", "#{share}/codepages"
system "./configure", "--disable-debug",
"--prefix=#{prefix}",
"--with-configdir=#{prefix}/etc",
"--without-ldap",
"--without-krb5"
# https://bugzilla.samba.org/show_bug.cgi?id=11113
inreplace "Makefile" do |s|
s.gsub! /(lib\w+).dylib(.[\.\d]+)/, "\\1\\2.dylib"
end
system "make", "install"
(prefix/"etc").mkpath
touch prefix/"etc/smb.conf"
(prefix/"private").mkpath
(var/"locks").mkpath
end
end
plist_options :manual => "smbd"
def plist; <<-EOS.undent
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>ProgramArguments</key>
<array>
<string>#{sbin}/smbd</string>
<string>-s</string>
<string>#{etc}/smb.conf</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
EOS
end
test do
system bin/"eventlogadm", "-h"
end
end
__END__
--- a/source3/lib/system.c 2012-02-22 22:46:14.000000000 -0200
+++ b/source3/lib/system.c 2012-02-22 22:47:51.000000000 -0200
@@ -1161,7 +1161,14 @@
int groups_max(void)
{
-#if defined(SYSCONF_SC_NGROUPS_MAX)
+#if defined(DARWINOS)
+ /* On OS X, sysconf(_SC_NGROUPS_MAX) returns 16
+ * due to OS X's group nesting and getgrouplist
+ * will return a flat list; users can exceed the
+ * maximum of 16 groups. And easily will.
+ */
+ return 32; // NGROUPS_MAX is defined, hence the define above is void.
+#elif defined(SYSCONF_SC_NGROUPS_MAX)
int ret = sysconf(_SC_NGROUPS_MAX);
return (ret == -1) ? NGROUPS_MAX : ret;
#else