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
|
require "formula"
class Openvpn < Formula
homepage "https://openvpn.net/index.php/download/community-downloads.html"
url "http://build.openvpn.net/downloads/releases/openvpn-2.3.4.tar.gz"
mirror "http://swupdate.openvpn.org/community/releases/openvpn-2.3.4.tar.gz"
sha256 "af506d5f48568fa8d2f2435cb3fad35f9a9a8f263999ea6df3ba296960cec85a"
revision 1
bottle do
sha1 "126ac2407abc24948fb125fe5f40fee7f5730f57" => :mavericks
sha1 "89914a561787f2d78bf2b0121c19f275ca11fade" => :mountain_lion
sha1 "3b9d94774429fbaada9b2e1cead67ea425481e5b" => :lion
end
depends_on "lzo"
depends_on :tuntap
depends_on "openssl"
def install
# pam_appl header is installed in a different location on Leopard
# and older; reported upstream https://community.openvpn.net/openvpn/ticket/326
if MacOS.version < :snow_leopard
inreplace Dir["src/plugins/auth-pam/{auth-pam,pamdl}.c"],
"security/pam_appl.h", "pam/pam_appl.h"
end
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-password-save"
system "make", "install"
inreplace "sample/sample-config-files/openvpn-startup.sh",
"/etc/openvpn", "#{etc}/openvpn"
(doc/"sample").install Dir["sample/sample-*"]
(etc + 'openvpn').mkpath
(var + 'run/openvpn').mkpath
end
def caveats; <<-EOS.undent
If you have installed the Tuntap dependency as a source package you will
need to follow the instructions found in `brew info tuntap`. If you have
installed the binary Tuntap package, no further action is necessary.
For OpenVPN to work as a server, you will need to create configuration file
in #{etc}/openvpn, samples can be found in #{share}/doc/openvpn
EOS
end
plist_options :startup => true
def plist; <<-EOS.undent
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//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_sbin}/openvpn</string>
<string>--config</string>
<string>#{etc}/openvpn/openvpn.conf</string>
</array>
<key>OnDemand</key>
<false/>
<key>RunAtLoad</key>
<true/>
<key>TimeOut</key>
<integer>90</integer>
<key>WatchPaths</key>
<array>
<string>#{etc}/openvpn</string>
</array>
<key>WorkingDirectory</key>
<string>#{etc}/openvpn</string>
</dict>
</plist>
EOS
end
end
|