aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pcre++.rb
blob: b064ae65bd795324caa49750118206b043e09019 (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
require 'formula'

class Pcrexx < Formula
  homepage 'http://www.daemon.de/PCRE'
  url 'http://www.daemon.de/idisk/Apps/pcre++/pcre++-0.9.5.tar.gz'
  sha1 '7cb640555c6adf34bf366139b22f6d1a66bd1fb0'

  depends_on 'pcre'

  # Fix building with libc++. Patch sent to maintainer.
  patch :DATA

  def install
    pcre = Formula["pcre"].opt_prefix
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--mandir=#{man}",
                          "--with-pcre-dir-lib=#{pcre}"
    system "make install"

    # Pcre++ ships Pcre.3, which causes a conflict with pcre.3 from pcre
    # in case-insensitive file system. Rename it to pcre++.3 to avoid
    # this problem.
    mv man3/'Pcre.3', man3/'pcre++.3'
  end

  def caveats; <<-EOS.undent
    The man page has been renamed to pcre++.3 to avoid conflicts with
    pcre in case-insensitive file system.  Please use "man pcre++"
    instead.
    EOS
  end
end

__END__
diff -urN pcre++-0.9.5.orig/libpcre++/pcre++.cc pcre++-0.9.5/libpcre++/pcre++.cc
--- pcre++-0.9.5.orig/libpcre++/pcre++.cc	2004-08-24 14:59:21.000000000 -0700
+++ pcre++-0.9.5/libpcre++/pcre++.cc	2013-11-01 11:30:21.000000000 -0700
@@ -38,6 +38,7 @@
  *
  */
 
+#include <clocale>
 
 #include "pcre++.h"