diff options
author | Ben Woods <woodsb02@FreeBSD.org> | 2016-10-05 22:50:25 +0000 |
---|---|---|
committer | Ben Woods <woodsb02@FreeBSD.org> | 2016-10-05 22:50:25 +0000 |
commit | 9ecc2f4ce05cc7a62a4a39a0a601ea726c71c5f4 (patch) | |
tree | da3277c834f8a29abe39b1e949a67897a24c1598 /audio/logitechmediaserver/files/patch-Slim_Utils_Log.pm | |
parent | Fix a typo introduced in r423381. (diff) |
Move audio/squeezeboxserver to audio/logitechmediaserver
audio/squeezeboxserver:
- Move to audio/logitechmediaserver
- Update to 7.9.0 pre-release (git commit from 7.9 branch on 2016.09.30)
- Change default install and database locations to suit new PORTNAME
- Remove softsqueeze.sh as it is no longer bundled with the server
- Add /usr/local/etc/newsyslog.conf.d/, don't edit /etc/newsyslog.conf
- Add LICENSE details
- Update maintainer (previous maintainer timeout)
- Use customized perl modules provided in distfile and slimserver-vendor
GitHub repo, rather than using perl dependencies from ports
- Changed install method to now copy directly to stagedir instead of an
intermediate step to TMP_SLIMDIR
audio/squeezeboxserver-dynamicplaylist:
- Move to audio/logitechmediaserver-dynamicplaylist
- Update to 2.9.3853
- Fix MASTER_SITES
- Add LICENSE details
- Update maintainer
audio/squeezeboxserver-lazysearch:
- Move to audio/logitechmediaserver-lazysearch
- Add LICENSE details
- Update maintainer
audio/squeezeboxserver-sqlplaylist:
- Move to audio/logitechmediaserver-sqlplaylist
- Update to 2.5.3859
- Fix MASTER_SITES
- Add LICENSE details
- Update maintainer
audio/squeezeboxserver-superdatetime:
- Move to audio/logitechmediaserver-superdatetime
- Add LICENSE details
- Update maintainer
audio/squeezeboxserver-trackstat:
- Move to audio/logitechmediaserver-trackstat
- Update to 3.2.3951
- Fix MASTER_SITES
- Add LICENSE details
- Update maintainer
PR: 180034
PR: 203266
Submitted by: woodsb02, mark@tranquillussoftware.co.uk (new maintainer)
Reported by: david@dawninglight.net, amdmi3
Approved by: markk@knigma.org (maintainer timeout), tdb (maintainer), adamw (mentor)
Differential Revision: https://reviews.freebsd.org/D6483
Notes
Notes:
svn path=/head/; revision=423393
Diffstat (limited to 'audio/logitechmediaserver/files/patch-Slim_Utils_Log.pm')
-rw-r--r-- | audio/logitechmediaserver/files/patch-Slim_Utils_Log.pm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/audio/logitechmediaserver/files/patch-Slim_Utils_Log.pm b/audio/logitechmediaserver/files/patch-Slim_Utils_Log.pm new file mode 100644 index 000000000000..722eb292b80c --- /dev/null +++ b/audio/logitechmediaserver/files/patch-Slim_Utils_Log.pm @@ -0,0 +1,20 @@ +--- Slim/Utils/Log.pm.orig 2016-09-30 13:54:28 UTC ++++ Slim/Utils/Log.pm +@@ -134,7 +134,7 @@ sub init { + # Make sure recreate option is set if user has an existing log.conf + if ( !main::ISWINDOWS && !$ENV{NYTPROF} ) { + $config{'log4perl.appender.server.recreate'} = 1; +- $config{'log4perl.appender.server.recreate_check_signal'} = 'USR1'; ++ $config{'log4perl.appender.server.recreate_check_signal'} = 'HUP'; + } + else { + $config{'log4perl.appender.server.recreate'} = 0; +@@ -1005,7 +1005,7 @@ sub _defaultAppenders { + + if ( !main::ISWINDOWS && !$ENV{NYTPROF} ) { + $defaultAppenders{server}->{recreate} = 1; +- $defaultAppenders{server}->{recreate_check_signal} = 'USR1'; ++ $defaultAppenders{server}->{recreate_check_signal} = 'HUP'; + } + + return $class->_fixupAppenders(\%defaultAppenders); |