summaryrefslogtreecommitdiff
path: root/www/amphetadesk/files/patch-AM_DIR
diff options
context:
space:
mode:
authorMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2005-10-11 22:10:24 +0000
committerMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2005-10-11 22:10:24 +0000
commitca7d54cfa73c075de1d95f7cd336c4f51a13f3ca (patch)
treecf16fadb65e284d3cb1ca4707989baaf7959e7ce /www/amphetadesk/files/patch-AM_DIR
parentUpdate to 3.5.4 (diff)
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 <kstailey@yahoo.com> (previous maintainer)
Notes
Notes: svn path=/head/; revision=145026
Diffstat (limited to 'www/amphetadesk/files/patch-AM_DIR')
-rw-r--r--www/amphetadesk/files/patch-AM_DIR21
1 files changed, 0 insertions, 21 deletions
diff --git a/www/amphetadesk/files/patch-AM_DIR b/www/amphetadesk/files/patch-AM_DIR
deleted file mode 100644
index b0fd613c5c82..000000000000
--- a/www/amphetadesk/files/patch-AM_DIR
+++ /dev/null
@@ -1,21 +0,0 @@
---- lib/AmphetaDesk.pm.DIST Tue Nov 5 06:06:05 2002
-+++ lib/AmphetaDesk.pm Thu Apr 8 23:17:19 2004
-@@ -71,7 +71,8 @@
-
- # delete the logfile if it's over 250k,
- # then reopen it and try to redir STDERR.
-- my $logfile = catfile($Bin, "AmphetaDesk.log");
-+ my $envtmp = $ENV{AM_DIR};
-+ my $logfile = catfile($envtmp, "AmphetaDesk.log");
- if (-e $logfile) { unlink $logfile if -s $logfile > 250000; }
- open (LOG, ">>$logfile") or die "AmphetaDesk couldn't open the logfile for logging: $!";
- open(STDERR,">&LOG") or die "AmphetaDesk couldn't redirect errors to the logfile: $!";
-@@ -81,7 +82,7 @@
- # load our settings. this routine is located in Settings.pm
- # and takes care of determining the OS, finding all the paths
- # to the relevant files, as well as making sure everything exists.
-- load_my_settings( catfile($Bin, "data", "mySettings.xml") );
-+ load_my_settings( catfile($envtmp, "data", "mySettings.xml") );
-
- # load our os specific libraries. if we don't know, use the Linux
- # libraries, which currently default to STDOUT for all gui processing.