class MongodbAT34 < Formula desc "High-performance, schema-free, document-oriented database" homepage "https://www.mongodb.org/" url "https://fastdl.mongodb.org/src/mongodb-src-r3.4.13.tar.gz" sha256 "be80bd8a183ed2cf3c1cf06d473addedd8b270356182881e6a9e93eb7f700172" bottle do sha256 "c45ec7320622f812935905f44c2ec115b32ed13bfaac4185fcd1a78909f3dcd8" => :high_sierra sha256 "4ff139beac47ea2f463774030ec27aaa113089c28e9e1b9b5b9080bfbac901c3" => :sierra sha256 "10f50b5c3d1b06c3250ab224ce5a733c252a809877c4a215511e530cdf2ba600" => :el_capitan end keg_only :versioned_formula option "with-boost", "Compile using installed boost, not the version shipped with mongodb" option "with-sasl", "Compile with SASL support" depends_on "boost" => :optional depends_on "go" => :build depends_on :macos => :mountain_lion depends_on "scons" => :build depends_on "openssl" => :recommended needs :cxx11 def install ENV.cxx11 if MacOS.version < :mavericks (buildpath/".brew_home/Library/Python/2.7/lib/python/site-packages/vendor.pth").write <<~EOS import site; site.addsitedir("#{buildpath}/vendor/lib/python2.7/site-packages") EOS # New Go tools have their own build script but the server scons "install" target is still # responsible for installing them. cd "src/mongo/gotools" do inreplace "build.sh" do |s| s.gsub! "$(git describe)", version.to_s s.gsub! "$(git rev-parse HEAD)", "homebrew" end args = %w[] if build.with? "openssl" args << "ssl" ENV["LIBRARY_PATH"] = Formula["openssl"].opt_lib ENV["CPATH"] = Formula["openssl"].opt_include end args << "sasl" if build.with? "sasl" system "./build.sh", *args end (buildpath/"src/mongo-tools").install Dir["src/mongo/gotools/bin/*"] args = %W[ --prefix=#{prefix} -j#{ENV.make_jobs} ] args << "--osx-version-min=#{MacOS.version}" args << "CC=#{ENV.cc}" args << "CXX=#{ENV.cxx}" args << "--use-sasl-client" if build.with? "sasl" args << "--use-system-boost" if build.with? "boost" args << "--use-new-tools" args << "--build-mongoreplay=true" args << "--disable-warnings-as-errors" if MacOS.version >= :yosemite if build.with? "openssl" args << "--ssl" args << "CCFLAGS=-I#{Formula["openssl"].opt_include}" args << "LINKFLAGS=-L#{Formula["openssl"].opt_lib}" end scons "install", *args (buildpath/"mongod.conf").write mongodb_conf etc.install "mongod.conf" end def post_install (var/"mongodb").mkpath (var/"log/mongodb").mkpath end def mongodb_conf; <<~EOS systemLog: destination: file path: #{var}/log/mongodb/mongo.log logAppend: true storage: dbPath: #{var}/mongodb net: bindIp: 127.0.0.1 EOS end plist_options :manual => "mongod --config #{HOMEBREW_PREFIX}/etc/mongod.conf" def plist; <<~EOS Label #{plist_name} ProgramArguments #{opt_bin}/mongod --config #{etc}/mongod.conf RunAtLoad KeepAlive WorkingDirectory #{HOMEBREW_PREFIX} StandardErrorPath #{var}/log/mongodb/output.log StandardOutPath #{var}/log/mongodb/output.log HardResourceLimits NumberOfFiles 4096 SoftResourceLimits NumberOfFiles 4096 EOS end test do system "#{bin}/mongod", "--sysinfo" end end