require 'formula' class IrcdHybrid < Formula homepage 'http://www.ircd-hybrid.org/' url 'http://sourceforge.net/projects/ircd-hybrid/files/ircd-hybrid/ircd-hybrid-8.0.6/ircd-hybrid-8.0.6.tgz' sha1 'd43cf4464c69f57f1d8273f70cf885c220385a4b' # ircd-hybrid needs the .la files skip_clean :la # system openssl fails with undefined symbols: "_SSL_CTX_clear_options" depends_on 'openssl' if MacOS.version < :lion def install ENV.j1 # build system trips over itself system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", "--localstatedir=#{var}", # there's no config setting for this so set it to something generous "--with-nicklen=30" system "make install" end def test system "#{sbin}/ircd", "-version" end def caveats; <<-EOS.undent You'll more than likely need to edit the default settings in the config file: #{etc}/ircd.conf EOS end plist_options :manual => "ircd" def plist; <<-EOS.undent KeepAlive Label #{plist_name} ProgramArguments #{opt_prefix}/sbin/ircd RunAtLoad UserName #{`whoami`.chomp} WorkingDirectory #{HOMEBREW_PREFIX} StandardErrorPath #{var}/ircd.log EOS end end