aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2011-03-05 12:06:25 -0800
committerAdam Vandenberg2011-03-05 12:06:25 -0800
commit6884841896e422ec971f49600c295a68333588f7 (patch)
tree580f5b87afc70b6333091a17cfce612ae0e80ad0 /Library
parent69d9c6fbeef387fd7822ab52ca55cd261d171fef (diff)
downloadhomebrew-6884841896e422ec971f49600c295a68333588f7.tar.bz2
Removed OpenLDAP
OpenLDAP is a system duplicate, so it has been moved to the Homebrew-ALT repo. To install: brew install https://github.com/adamv/homebrew-alt/raw/master/duplicates/openldap.rb (It has also been bumped to 2.4.24, which compiles correctly against BDB 5.x.) Fixes #4473
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/openldap.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/Library/Formula/openldap.rb b/Library/Formula/openldap.rb
deleted file mode 100644
index b67f4003a..000000000
--- a/Library/Formula/openldap.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-require 'formula'
-
-class Openldap <Formula
- url 'ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-2.4.23.tgz'
- homepage 'http://www.openldap.org/software/'
- md5 '90150b8c0d0192e10b30157e68844ddf'
-
- depends_on 'berkeley-db'
-
- def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
- system "make install"
- end
-
- def caveats; <<-EOS.undent
- OpenLDAP depends on berkeley-db 4.x, but Homebrew provides version 5.x,
- which doesn't work. To work around this, do:
- $ brew install https://github.com/adamv/homebrew/raw/versions/Library/Formula/berkeley-db4.rb --without-java
- $ brew install --ignore-dependencies openldap
- EOS
- end
-end