From 7b21e90ff7e56cbd6c5935d63d270d9e8abfdf20 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Mon, 29 Apr 2013 18:58:57 -0700 Subject: [PATCH] added daemontools, ucspi-tcp to install list --- bin/install_deps.pl | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/bin/install_deps.pl b/bin/install_deps.pl index b825e73..c69797d 100755 --- a/bin/install_deps.pl +++ b/bin/install_deps.pl @@ -27,7 +27,10 @@ use CPAN; use English qw( -no_match_vars ); my $apps = [ -# { app => 'mysql-server-5', info => { port => 'mysql50-server', dport=>'mysql5', yum =>'mysql-server'} }, + { app => 'daemontools', info => { } }, + { app => 'ucspi-tcp', info => { } }, +# { app => 'dspam', info => { } }, +# { app => 'mysql-server-55', info => { port => 'mysql55-server', dport=>'mysql5', yum =>'mysql-server'} }, # { app => 'apache22' , info => { port => 'apache22', dport=>'', yum => 'httpd' } }, ]; @@ -388,7 +391,8 @@ sub name_overrides { # MacPorts ($dport), yum, and apt. my @modules = ( { module=>'LWP::UserAgent', info => { cat=>'www', port=>'p5-libwww', dport=>'p5-libwww-perl' }, }, - { module=>'Mail::Send' , info => { port => 'Mail::Tools', } }, + { module=>'Mail::Send' , info => { port => 'Mail::Tools', } }, + { module=>'Mail::SpamAssassin' , info => { cat => 'mail', } }, ); my ($match) = grep { $_->{module} eq $mod } @modules; return $match if $match;