diff options
author | brooks <brooks@FreeBSD.org> | 2008-05-01 07:18:04 +0800 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2008-05-01 07:18:04 +0800 |
commit | ae6274e0e4d2ccad90c40cb59dff90dcf79b397e (patch) | |
tree | 4ef2e25b833a584267b957246e5d24f6d2288a91 /audio/squeezecenter | |
parent | edc44d4502e4f5e058f462b83c7599697583b118 (diff) | |
download | freebsd-ports-gnome-ae6274e0e4d2ccad90c40cb59dff90dcf79b397e.tar.gz freebsd-ports-gnome-ae6274e0e4d2ccad90c40cb59dff90dcf79b397e.tar.zst freebsd-ports-gnome-ae6274e0e4d2ccad90c40cb59dff90dcf79b397e.zip |
The pkg-install script incorrectly listed the pid file path as
/var/run/${name}.pid. It's actually /var/run/${name}/${name}.pid.
Note, users who have previously installed this port will need to manually fix
their netsyslog.conf files.
Reported by: Hans Brand <hans at marcans dot nl>
Diffstat (limited to 'audio/squeezecenter')
-rw-r--r-- | audio/squeezecenter/Makefile | 2 | ||||
-rw-r--r-- | audio/squeezecenter/files/pkg-install.in | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/audio/squeezecenter/Makefile b/audio/squeezecenter/Makefile index 75f9df5e8411..43ab6b3827ad 100644 --- a/audio/squeezecenter/Makefile +++ b/audio/squeezecenter/Makefile @@ -7,7 +7,7 @@ PORTNAME= squeezecenter PORTVERSION= 7.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= http://www.slimdevices.com/downloads/SqueezeCenter_v${PORTVERSION}/ DISTNAME= ${PORTNAME}-7.0-noCPAN diff --git a/audio/squeezecenter/files/pkg-install.in b/audio/squeezecenter/files/pkg-install.in index 47d5471e943a..6969b8e5c833 100644 --- a/audio/squeezecenter/files/pkg-install.in +++ b/audio/squeezecenter/files/pkg-install.in @@ -1,5 +1,5 @@ #!/bin/sh -# $FreeBSD: /tmp/pcvs/ports/audio/squeezecenter/files/Attic/pkg-install.in,v 1.5 2008-04-04 15:48:14 brooks Exp $ +# $FreeBSD: /tmp/pcvs/ports/audio/squeezecenter/files/Attic/pkg-install.in,v 1.6 2008-04-30 23:18:04 brooks Exp $ name=slimserver u=%%SLIMUSER%% @@ -13,7 +13,7 @@ statedir=%%SLIMDBDIR%% cachedir=${statedir}/cache conffile=${statedir}/squeezecenter.conf playlistdir=${statedir}/playlists -pidfile=/var/run/${name}.pid +pidfile=/var/run/${name}/${name}.pid newsyslogfile=/etc/newsyslog.conf logcomment="# added by audio/squeezecenter port" serverlogfile=/var/log/squeezecenter/server.log |