class Dovecot < Formula desc "IMAP/POP3 server" homepage "http://dovecot.org/" url "http://dovecot.org/releases/2.2/dovecot-2.2.27.tar.gz" mirror "https://fossies.org/linux/misc/dovecot-2.2.27.tar.gz" sha256 "897f92a87cda4b27b243f8149ce0ba7b7e71a2be8fb7994eb0a025e54cde18e9" bottle do sha256 "d01433b5c6ece5ec375874e812eedacec0da37ff55cbae2b22f10da783808061" => :sierra sha256 "e5376f7031a60f38385e68432b4c7c4e3ceb80697efe9580ad2b2eafde298480" => :el_capitan sha256 "e9e1418a9aaf69f558f5e47360c9593d5ad12c937d45118d22d484c4687c0af0" => :yosemite end option "with-pam", "Build with PAM support" option "with-pigeonhole", "Add Sieve addon for Dovecot mailserver" option "with-pigeonhole-unfinished-features", "Build unfinished new Sieve addon features/extensions" option "with-stemmer", "Build with libstemmer support" depends_on "openssl" depends_on "clucene" => :optional resource "pigeonhole" do url "http://pigeonhole.dovecot.org/releases/2.2/dovecot-2.2-pigeonhole-0.4.16.tar.gz" sha256 "8f0b98f18062d6e241eef74ebe16cc167cd246361cbe6657d94f0ecc5d7d3234" end resource "stemmer" do url "https://github.com/snowballstem/snowball.git", :revision => "3b1f4c2ac4b924bb429f929d9decd3f50662a6e0" end def install args = %W[ --prefix=#{prefix} --disable-dependency-tracking --libexecdir=#{libexec} --sysconfdir=#{etc} --localstatedir=#{var} --with-ssl=openssl --with-sqlite --with-zlib --with-bzlib ] args << "--with-lucene" if build.with? "clucene" args << "--with-pam" if build.with? "pam" if build.with? "stemmer" args << "--with-libstemmer" resource("stemmer").stage do system "make", "dist_libstemmer_c" system "tar", "xzf", "dist/libstemmer_c.tgz", "-C", buildpath end end system "./configure", *args system "make", "install" if build.with? "pigeonhole" resource("pigeonhole").stage do args = %W[ --disable-dependency-tracking --with-dovecot=#{lib}/dovecot --prefix=#{prefix} ] args << "--with-unfinished-features" if build.with? "pigeonhole-unfinished-features" system "./configure", *args system "make" system "make", "install" end end end def caveats; <<-EOS.undent For Dovecot to work, you may need to create a dovecot user and group depending on your configuration file options. EOS end plist_options :startup => true def plist; <<-EOS.undent Label #{plist_name} KeepAlive RunAtLoad ProgramArguments #{opt_sbin}/dovecot -F StandardErrorPath #{var}/log/dovecot/dovecot.log StandardOutPath #{var}/log/dovecot/dovecot.log EOS end test do assert_match /#{version}/, shell_output("#{sbin}/dovecot --version") end end