2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-05 22:14:47 +00:00
|
|
|
|
2012-11-04 02:06:54 +00:00
|
|
|
class Mongodb < Formula
|
|
|
|
homepage 'http://www.mongodb.org/'
|
2013-10-23 16:45:14 +00:00
|
|
|
if MacOS.version >= :mavericks
|
2013-10-21 21:33:37 +00:00
|
|
|
url 'http://downloads.mongodb.org/src/mongodb-src-r2.5.3.tar.gz'
|
|
|
|
sha1 '8fbd7f6f2a55092ae0e461ee0f5a4a7f738d40c9'
|
2013-10-23 16:45:14 +00:00
|
|
|
else
|
|
|
|
url 'http://downloads.mongodb.org/src/mongodb-src-r2.4.7.tar.gz'
|
|
|
|
sha1 'abef63992fe12e4e68a7d9de01d8d8eaa8705c9a'
|
|
|
|
|
|
|
|
devel do
|
|
|
|
url 'http://downloads.mongodb.org/src/mongodb-src-r2.5.3.tar.gz'
|
|
|
|
sha1 '8fbd7f6f2a55092ae0e461ee0f5a4a7f738d40c9'
|
|
|
|
end
|
2013-05-23 15:14:30 +00:00
|
|
|
end
|
|
|
|
|
2013-08-27 14:41:42 +00:00
|
|
|
head 'https://github.com/mongodb/mongo.git'
|
|
|
|
|
2013-10-07 16:18:31 +00:00
|
|
|
def patches
|
2013-10-21 21:33:37 +00:00
|
|
|
# Fix osx_min_verson issues with clang
|
|
|
|
'https://github.com/mongodb/mongo/commit/978af9.patch' if build.devel?
|
2013-10-07 16:18:31 +00:00
|
|
|
end
|
|
|
|
|
2013-08-27 14:41:42 +00:00
|
|
|
depends_on 'scons' => :build
|
|
|
|
depends_on 'openssl' => :optional
|
2009-09-05 22:14:47 +00:00
|
|
|
|
|
|
|
def install
|
2013-10-14 21:06:16 +00:00
|
|
|
# mongodb currently doesn't support building against libc++
|
|
|
|
# This will be fixed in the 2.6 release, but meanwhile it must
|
|
|
|
# be built against libstdc++
|
|
|
|
# See: https://github.com/mxcl/homebrew/issues/22771
|
|
|
|
ENV.append 'CXXFLAGS', '-stdlib=libstdc++' if ENV.compiler == :clang
|
|
|
|
|
2013-08-27 14:41:42 +00:00
|
|
|
args = ["--prefix=#{prefix}", "-j#{ENV.make_jobs}"]
|
|
|
|
args << '--64' if MacOS.prefer_64_bit?
|
|
|
|
|
|
|
|
if build.with? 'openssl'
|
|
|
|
args << '--ssl'
|
|
|
|
args << "--extrapathdyn=#{Formula.factory('openssl').opt_prefix}"
|
|
|
|
end
|
|
|
|
|
|
|
|
system 'scons', 'install', *args
|
2009-12-28 20:46:22 +00:00
|
|
|
|
|
|
|
(prefix+'mongod.conf').write mongodb_conf
|
2012-04-06 19:15:47 +00:00
|
|
|
|
2012-10-24 16:10:19 +00:00
|
|
|
mv bin/'mongod', prefix
|
|
|
|
(bin/'mongod').write <<-EOS.undent
|
2012-09-11 07:32:10 +00:00
|
|
|
#!/usr/bin/env ruby
|
2013-04-29 15:30:38 +00:00
|
|
|
ARGV << '--config' << '#{etc}/mongod.conf' unless ARGV.find { |arg|
|
|
|
|
arg =~ /^\s*\-\-config$/ or arg =~ /^\s*\-f$/
|
|
|
|
}
|
2012-09-11 07:32:10 +00:00
|
|
|
exec "#{prefix}/mongod", *ARGV
|
|
|
|
EOS
|
2013-10-07 14:35:37 +00:00
|
|
|
|
|
|
|
etc.install prefix+'mongod.conf'
|
|
|
|
|
|
|
|
(var+'mongodb').mkpath
|
|
|
|
(var+'log/mongodb').mkpath
|
2013-09-05 10:59:31 +00:00
|
|
|
end
|
2012-09-11 07:32:10 +00:00
|
|
|
|
2012-02-10 05:55:25 +00:00
|
|
|
def mongodb_conf; <<-EOS.undent
|
2011-03-16 19:43:51 +00:00
|
|
|
# Store data in #{var}/mongodb instead of the default /data/db
|
|
|
|
dbpath = #{var}/mongodb
|
2009-12-28 20:46:22 +00:00
|
|
|
|
2012-08-06 14:44:54 +00:00
|
|
|
# Append logs to #{var}/log/mongodb/mongo.log
|
|
|
|
logpath = #{var}/log/mongodb/mongo.log
|
|
|
|
logappend = true
|
|
|
|
|
2011-03-16 19:43:51 +00:00
|
|
|
# Only accept local connections
|
|
|
|
bind_ip = 127.0.0.1
|
|
|
|
EOS
|
2009-12-28 20:46:22 +00:00
|
|
|
end
|
|
|
|
|
2012-11-25 15:06:41 +00:00
|
|
|
plist_options :manual => "mongod"
|
|
|
|
|
|
|
|
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>#{opt_prefix}/mongod</string>
|
|
|
|
<string>run</string>
|
|
|
|
<string>--config</string>
|
|
|
|
<string>#{etc}/mongod.conf</string>
|
|
|
|
</array>
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
<key>KeepAlive</key>
|
|
|
|
<false/>
|
|
|
|
<key>WorkingDirectory</key>
|
|
|
|
<string>#{HOMEBREW_PREFIX}</string>
|
|
|
|
<key>StandardErrorPath</key>
|
|
|
|
<string>#{var}/log/mongodb/output.log</string>
|
|
|
|
<key>StandardOutPath</key>
|
|
|
|
<string>#{var}/log/mongodb/output.log</string>
|
2013-02-02 07:13:34 +00:00
|
|
|
<key>HardResourceLimits</key>
|
|
|
|
<dict>
|
|
|
|
<key>NumberOfFiles</key>
|
|
|
|
<integer>1024</integer>
|
|
|
|
</dict>
|
|
|
|
<key>SoftResourceLimits</key>
|
|
|
|
<dict>
|
|
|
|
<key>NumberOfFiles</key>
|
|
|
|
<integer>1024</integer>
|
|
|
|
</dict>
|
2012-11-25 15:06:41 +00:00
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOS
|
2009-09-05 22:14:47 +00:00
|
|
|
end
|
2011-03-10 05:11:03 +00:00
|
|
|
end
|