diff options
author | Lars Koeller <lkoeller@FreeBSD.org> | 2004-10-28 20:07:05 +0000 |
---|---|---|
committer | Lars Koeller <lkoeller@FreeBSD.org> | 2004-10-28 20:07:05 +0000 |
commit | 7b6254ce1f7235c3ff1b40699f747a925c044534 (patch) | |
tree | b3492bcb1d13bac1656a0897cd9d1795d3a5979c /audio/rplay | |
parent | a4e6989ec1b82ae9333b276fab7bfa91fd429de6 (diff) |
Notes
Diffstat (limited to 'audio/rplay')
-rw-r--r-- | audio/rplay/Makefile | 8 | ||||
-rw-r--r-- | audio/rplay/pkg-plist | 7 |
2 files changed, 13 insertions, 2 deletions
diff --git a/audio/rplay/Makefile b/audio/rplay/Makefile index e150a5f923ea..6994628e0cf6 100644 --- a/audio/rplay/Makefile +++ b/audio/rplay/Makefile @@ -7,7 +7,7 @@ PORTNAME= rplay PORTVERSION= 3.3.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= http://rplay.doit.org/dist/ @@ -37,6 +37,12 @@ post-install: @${ECHO_MSG} "===> Installing ${PREFIX}/etc/rc.d/rplayd.sh" @${ECHO_MSG} "===> startup file as ${PREFIX}/etc/rc.d/rplayd.sh.sample" @${INSTALL_SCRIPT} -m 751 ${FILESDIR}/rplayd.sh ${PREFIX}/etc/rc.d/rplayd.sh.sample + for na in rplay.conf rplay.helpers rplay.servers rplay.hosts; do \ + ${CP} ${WRKSRC}/etc/$$na ${PREFIX}/etc/$$na.sample; \ + if [ ! -f ${PREFIX}/etc/$$na ]; then \ + ${CP} ${WRKSRC}/etc/$$na ${PREFIX}/etc/$$na; \ + fi; \ + done .if !exists(${PREFIX}/etc/rplay.hosts) @${ECHO_CMD} localhost > ${PREFIX}/etc/rplay.hosts .endif diff --git a/audio/rplay/pkg-plist b/audio/rplay/pkg-plist index 60f23de0ee5d..9b9ab30faa27 100644 --- a/audio/rplay/pkg-plist +++ b/audio/rplay/pkg-plist @@ -1,7 +1,12 @@ etc/rc.d/rplayd.sh.sample @unexec if cmp %D/etc/rplay.hosts.sample %D/etc/rplay.hosts 2>/dev/null; then rm -f %D/etc/rplay.hosts; fi etc/rplay.hosts.sample -@exec if test ! -f %D/etc/rplay.hosts; then cp -p %D/etc/rplay.hosts.sample %D/etc/rplay.hosts; fi +@unexec if cmp %D/etc/rplay.conf.sample %D/etc/rplay.conf 2>/dev/null; then rm -f %D/etc/rplay.conf; fi +etc/rplay.conf.sample +@unexec if cmp %D/etc/rplay.helpers.sample %D/etc/rplay.helpers 2>/dev/null; then rm -f %D/etc/rplay.helpers; fi +etc/rplay.helpers.sample +@unexec if cmp %D/etc/rplay.servers.sample %D/etc/rplay.servers 2>/dev/null; then rm -f %D/etc/rplay.servers; fi +etc/rplay.servers.sample bin/rplay bin/rptp sbin/rplayd |