From ca7d54cfa73c075de1d95f7cd336c4f51a13f3ca Mon Sep 17 00:00:00 2001 From: Mario Sergio Fujikawa Ferreira Date: Tue, 11 Oct 2005 22:10:24 +0000 Subject: o Take over maintainership on previous maintainers request o Uphold hier(7) o Add rc.d(8) rc.subr(8) script o Fix several warnings o Change default rss channels to BSD based ones: - http://www.freebsd.org/ - http://www.freshports.org/ - http://www.oreillynet.com/pub/au/73 - http://bsdnews.com/ o Fetch an updated full channel list from the Internet if none previously exist o Add fork(2)/exec(3) browser support with signal(3) SIGCHLD handling o AmphetaDesk now allows per user configurations. Due to that, it now requires a user with a home directory so that. One can use the rc.d script to choose a user to launch AmphetaDesk from startup or just to run it normally from any user other than root o Bump PORTREVISION Approved by: Kenneth Stailey (previous maintainer) --- .../files/patch-lib::AmphetaDesk::Utilities.pm | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 www/amphetadesk/files/patch-lib::AmphetaDesk::Utilities.pm (limited to 'www/amphetadesk/files/patch-lib::AmphetaDesk::Utilities.pm') diff --git a/www/amphetadesk/files/patch-lib::AmphetaDesk::Utilities.pm b/www/amphetadesk/files/patch-lib::AmphetaDesk::Utilities.pm new file mode 100644 index 000000000000..efa3380c5d85 --- /dev/null +++ b/www/amphetadesk/files/patch-lib::AmphetaDesk::Utilities.pm @@ -0,0 +1,29 @@ +--- lib/AmphetaDesk/Utilities.pm.orig Sun Oct 9 19:45:59 2005 ++++ lib/AmphetaDesk/Utilities.pm Sun Oct 9 19:51:44 2005 +@@ -112,7 +112,7 @@ + $hour = sprintf "%02.0d", $hour; + + # print the entry to our log file. +- print LOG "[$hour:$min:$sec] $message\n"; ++ print LOG "[$hour:$min:$sec] $message\n" if fileno LOG; + + # and save the message in our response log + # if the message is also being sent to the gui. +@@ -127,7 +127,7 @@ + $os = "MacOS" if $^O =~ /Mac/; + $os = "Windows" if $^O =~ /Win/; + $os = "Linux" unless defined $os; +- my $packname = "AmphetaDesk::OS::"; ++ my $packname = "AmphetaDesk::AmphetaDesk::OS::"; + my $funcname = "::gui_note"; + &{ $packname. $os . $funcname }($message) if $gui; + } +@@ -151,7 +151,7 @@ + $os = "MacOS" if $^O =~ /Mac/; + $os = "Windows" if $^O =~ /Win/; + $os = "Linux" unless defined $os; +- my $packname = "AmphetaDesk::OS::"; ++ my $packname = "AmphetaDesk::AmphetaDesk::OS::"; + my $funcname = "::gui_note"; + &{ $packname. $os . $funcname }($message); + } -- cgit v1.2.3