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
  | 
require 'formula'
class Nss < Formula
  homepage "https://developer.mozilla.org/docs/NSS"
  url "https://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_16_RTM/src/nss-3.16.tar.gz"
  sha1 "981dc6ef2f1e69ec7e2b277ce27c7005e9837f95"
  bottle do
    cellar :any
    revision 2
    sha1 "1a20609183ecbbf461d8aacf468e47574005f99a" => :mavericks
    sha1 "7fcd7c8a6aea9ec3f451f2e5da5d5c263cd9718b" => :mountain_lion
    sha1 "ec22f8d3125ef7c10e1711c3f04a26fcb45f1a11" => :lion
  end
  depends_on "nspr"
  def install
    ENV.deparallelize
    cd "nss"
    args = [
      "BUILD_OPT=1",
      "NSS_USE_SYSTEM_SQLITE=1",
      "NSPR_INCLUDE_DIR=#{HOMEBREW_PREFIX}/include/nspr",
      "NSPR_LIB_DIR=#{HOMEBREW_PREFIX}/lib"
    ]
    args << "USE_64=1" if MacOS.prefer_64_bit?
    # Remove the broken (for anyone but Firefox) install_name
    inreplace "coreconf/Darwin.mk", "-install_name @executable_path", "-install_name #{lib}"
    inreplace "lib/freebl/config.mk", "@executable_path", lib
    system "make", "all", *args
    # We need to use cp here because all files get cross-linked into the dist
    # hierarchy, and Homebrew's Pathname.install moves the symlink into the keg
    # rather than copying the referenced file.
    cd "../dist"
    bin.mkdir
    Dir["Darwin*/bin/*"].each do |file|
      cp file, bin unless file.include? ".dylib"
    end
    include.mkdir
    include_target = include + "nss"
    include_target.mkdir
    ["dbm", "nss"].each do |dir|
      Dir["public/#{dir}/*"].each do |file|
        cp file, include_target
      end
    end
    lib.mkdir
    libexec.mkdir
    Dir["Darwin*/lib/*"].each do |file|
      cp file, lib unless file.include? ".chk"
      cp file, libexec if file.include? ".chk"
    end
    # resolves conflict with openssl, see #28258
    rm lib/"libssl.a"
    (lib+"pkgconfig/nss.pc").write pc_file
  end
  test do
    # See: http://www.mozilla.org/projects/security/pki/nss/tools/certutil.html
    (testpath/"passwd").write("It's a secret to everyone.")
    system "#{bin}/certutil", "-N", "-d", pwd, "-f", "passwd"
    system "#{bin}/certutil", "-L", "-d", pwd
  end
  def pc_file; <<-EOS.undent
    prefix=#{opt_prefix}
    exec_prefix=${prefix}
    libdir=${exec_prefix}/lib
    includedir=${prefix}/include/nss
    Name: NSS
    Description: Mozilla Network Security Services
    Version: #{version}
    Requires: nspr
    Libs: -L${libdir} -lnss3 -lnssutil3 -lsmime3 -lssl3
    Cflags: -I${includedir}
    EOS
  end
end
  |