2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-08-31 13:50:21 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Dovecot < Formula
|
2011-10-06 10:14:17 +00:00
|
|
|
url 'http://www.dovecot.org/releases/2.0/dovecot-2.0.15.tar.gz'
|
|
|
|
md5 '16a08dfd24422d482440a8b03d6f7f6c'
|
2010-03-09 17:36:57 +00:00
|
|
|
homepage 'http://dovecot.org/'
|
2011-10-06 10:14:17 +00:00
|
|
|
|
|
|
|
def patches; DATA; end
|
2009-08-31 13:50:21 +00:00
|
|
|
|
|
|
|
def install
|
2010-05-27 04:03:39 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
2011-10-06 10:14:17 +00:00
|
|
|
"--libexecdir=#{libexec}",
|
2010-05-27 04:03:39 +00:00
|
|
|
"--sysconfdir=#{etc}",
|
|
|
|
"--localstatedir=#{var}",
|
|
|
|
"--with-ssl=openssl"
|
2009-08-31 13:50:21 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
2009-09-16 18:29:43 +00:00
|
|
|
def caveats; <<-EOS
|
2009-08-31 13:50:21 +00:00
|
|
|
For Dovecot to work, you will need to do the following:
|
|
|
|
|
2010-05-27 04:03:39 +00:00
|
|
|
1) Create configuration in #{etc}
|
2009-08-31 13:50:21 +00:00
|
|
|
|
|
|
|
2) If required by the configuration above, create a dovecot user and group
|
|
|
|
|
|
|
|
3) possibly create a launchd item in /Library/LaunchDaemons/org.dovecot.plist, like so:
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2010-07-13 22:28:41 +00:00
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
2009-08-31 13:50:21 +00:00
|
|
|
<plist version="1.0">
|
|
|
|
<dict>
|
|
|
|
<key>Label</key>
|
|
|
|
<string>org.dovecot</string>
|
2010-07-13 22:28:41 +00:00
|
|
|
<key>OnDemand</key>
|
|
|
|
<false/>
|
2009-08-31 13:50:21 +00:00
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
2010-05-27 04:03:39 +00:00
|
|
|
<string>#{sbin}/dovecot</string>
|
2010-07-13 22:28:41 +00:00
|
|
|
<string>-F</string>
|
2009-08-31 13:50:21 +00:00
|
|
|
</array>
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
2010-07-13 22:28:41 +00:00
|
|
|
<key>ServiceDescription</key>
|
|
|
|
<string>Dovecot mail server</string>
|
2009-08-31 13:50:21 +00:00
|
|
|
</dict>
|
|
|
|
</plist>
|
2009-09-01 00:48:24 +00:00
|
|
|
|
2010-07-13 22:28:41 +00:00
|
|
|
Source: http://wiki.dovecot.org/LaunchdInstall
|
2010-04-07 05:58:35 +00:00
|
|
|
4) start the server using: sudo launchctl load /Library/LaunchDaemons/org.dovecot.plist
|
2009-08-31 13:50:21 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|
2011-10-06 10:14:17 +00:00
|
|
|
|
|
|
|
__END__
|
|
|
|
|
|
|
|
# This patch fixes a linking problem looking for _environ, call
|
|
|
|
# _NSGetEnviron() instead (upstream does that at another location but
|
|
|
|
# missesthis one).
|
|
|
|
|
|
|
|
diff --git a/src/lib/env-util.c b/src/lib/env-util.c
|
|
|
|
index 8111db7..c3520d0 100644
|
|
|
|
--- a/src/lib/env-util.c
|
|
|
|
+++ b/src/lib/env-util.c
|
|
|
|
@@ -7,6 +7,7 @@
|
|
|
|
#include <stdlib.h>
|
|
|
|
#ifdef __APPLE__
|
|
|
|
# include <crt_externs.h>
|
|
|
|
+# define environ (*_NSGetEnviron())
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct env_backup {
|
|
|
|
@@ -36,7 +37,6 @@ void env_remove(const char *name)
|
|
|
|
unsetenv(name);
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
- extern char **environ;
|
|
|
|
unsigned int len;
|
|
|
|
char **envp;
|
|
|
|
|
|
|
|
@@ -109,7 +109,6 @@ void env_clean_except(const char *const preserve_envs[])
|
|
|
|
|
|
|
|
struct env_backup *env_backup_save(void)
|
|
|
|
{
|
|
|
|
- char **environ = *env_get_environ_p();
|
|
|
|
struct env_backup *env;
|
|
|
|
unsigned int i, count;
|
|
|
|
pool_t pool;
|