aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2013-11-18 22:49:04 -0800
committerAdam Vandenberg2013-11-18 22:49:04 -0800
commitc07d17a71c05be2f88b0c9daf36c4dda9b05b8f7 (patch)
tree21adc6eba84c0591b33690ffe1259c10df35b4d2 /Library/Formula
parent318ef04a3f93259f79621de6f3e506b8d932982f (diff)
downloadhomebrew-c07d17a71c05be2f88b0c9daf36c4dda9b05b8f7.tar.bz2
Redact syslog-ng
Closes #22030.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/syslog-ng.rb29
1 files changed, 0 insertions, 29 deletions
diff --git a/Library/Formula/syslog-ng.rb b/Library/Formula/syslog-ng.rb
deleted file mode 100644
index 61b31fced..000000000
--- a/Library/Formula/syslog-ng.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-require 'formula'
-
-class SyslogNg < Formula
- homepage 'http://www.balabit.com/network-security/syslog-ng/'
- url 'http://www.balabit.com/downloads/files/syslog-ng/sources/3.2.5/source/syslog-ng_3.2.5.tar.gz'
- sha1 '5541cd6711b7a9d983601d8047b9a27d98ecbe9b'
-
- depends_on 'pkg-config' => :build
- depends_on 'pcre'
- depends_on 'eventlog'
- depends_on 'glib'
-
- def install
- ENV.append 'LDFLAGS', '-levtlog -lglib-2.0' # help the linker find symbols
- system "./configure", "--disable-debug",
- "--disable-dependency-tracking",
- "--enable-dynamic-linking",
- "--prefix=#{prefix}",
- "--sysconfdir=#{etc}",
- "--localstatedir=#{var}"
-
- # the HAVE_ENVIRON check in configure fails
- # discussion for a fix is ongoing on the Homebrew mailing list, but for
- # now this is sufficient
- inreplace 'config.h', '#define HAVE_ENVIRON 1', ''
-
- system "make install"
- end
-end