blob: fba15d22be02cf0f9d192d49969729438ddfbfc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
require 'formula'
class Mongodb < Formula
homepage 'http://www.mongodb.org/'
url 'http://downloads.mongodb.org/src/mongodb-src-r2.4.9.tar.gz'
sha1 '3aa495cf32769a09ee9532827391892d96337d6b'
bottle do
revision 1
sha1 "7ace0e0f8f6b2096a54e4e7dd976b3728227e95a" => :mavericks
sha1 "b917ff86005452c303132616df27d787967ecdf6" => :mountain_lion
sha1 "c62f44838aac80a38596b0980f5575ffd99b79fe" => :lion
end
devel do
url 'http://downloads.mongodb.org/src/mongodb-src-r2.5.5.tar.gz'
sha1 '4827f3da107174a3cbb1f5b969c7f597ca09b4f8'
end
head 'https://github.com/mongodb/mongo.git'
def patches
if build.stable?
[
# Fix Clang v8 build failure from build warnings and -Werror
'https://github.com/mongodb/mongo/commit/be4bc7.patch'
]
end
end
# When 2.6 is released this conditional can be removed.
if MacOS.version < :mavericks || !build.stable?
option "with-boost", "Compile using installed boost, not the version shipped with mongodb"
depends_on "boost" => :optional
end
depends_on 'scons' => :build
depends_on 'openssl' => :optional
def install
args = ["--prefix=#{prefix}", "-j#{ENV.make_jobs}"]
cxx = ENV.cxx
if ENV.compiler == :clang && MacOS.version >= :mavericks
if build.stable?
# When 2.6 is released this cxx hack can be removed
# ENV.append "CXXFLAGS", "-stdlib=libstdc++" does not work with scons
# so use this hack of appending the flag to the --cxx parameter of the sconscript.
# mongodb 2.4 can't build with libc++, but defaults to it on Mavericks
cxx += " -stdlib=libstdc++"
else
# build devel and HEAD version on Mavericks with libc++
# Use --osx-version-min=10.9 such that the compiler defaults to libc++.
# Upstream issue discussing the default flags:
# https://jira.mongodb.org/browse/SERVER-12682
args << "--osx-version-min=10.9"
end
end
args << '--64' if MacOS.prefer_64_bit?
args << "--cc=#{ENV.cc}"
args << "--cxx=#{cxx}"
# --full installs development headers and client library, not just binaries
args << "--full"
args << "--use-system-boost" if build.with? "boost"
if build.with? 'openssl'
args << '--ssl'
args << "--extrapathdyn=#{Formula.factory('openssl').opt_prefix}"
end
scons 'install', *args
(prefix+'mongod.conf').write mongodb_conf
mv bin/'mongod', prefix
(bin/'mongod').write <<-EOS.undent
#!/usr/bin/env ruby
ARGV << '--config' << '#{etc}/mongod.conf' unless ARGV.find { |arg|
arg =~ /^\s*\-\-config$/ or arg =~ /^\s*\-f$/
}
exec "#{prefix}/mongod", *ARGV
EOS
etc.install prefix+'mongod.conf'
(var+'mongodb').mkpath
(var+'log/mongodb').mkpath
end
def mongodb_conf; <<-EOS.undent
# Store data in #{var}/mongodb instead of the default /data/db
dbpath = #{var}/mongodb
# Append logs to #{var}/log/mongodb/mongo.log
logpath = #{var}/log/mongodb/mongo.log
logappend = true
# Only accept local connections
bind_ip = 127.0.0.1
EOS
end
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>
<key>HardResourceLimits</key>
<dict>
<key>NumberOfFiles</key>
<integer>1024</integer>
</dict>
<key>SoftResourceLimits</key>
<dict>
<key>NumberOfFiles</key>
<integer>1024</integer>
</dict>
</dict>
</plist>
EOS
end
end
|