summaryrefslogtreecommitdiff
path: root/audio/rplay/Makefile
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1997-06-13 16:17:05 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1997-06-13 16:17:05 +0000
commitb7e65fee3afaa60d4941cc17d767f1cf93aaf382 (patch)
treea2f71287778b2cac5fae382fb07e0d21b7b7f044 /audio/rplay/Makefile
parentForce the compilation of the SVGA server in all cases: other servers share (diff)
Upgrade to b6
Install rplayd automatically Use gsm library from ports Fix PLIST
Notes
Notes: svn path=/head/; revision=6908
Diffstat (limited to 'audio/rplay/Makefile')
-rw-r--r--audio/rplay/Makefile20
1 files changed, 17 insertions, 3 deletions
diff --git a/audio/rplay/Makefile b/audio/rplay/Makefile
index 9a6d694ae29d..94692413e133 100644
--- a/audio/rplay/Makefile
+++ b/audio/rplay/Makefile
@@ -1,19 +1,33 @@
# New ports collection makefile for: rplay - Network audio player
-# Version required: 3.2.0b3
+# Version required: 3.2.0b6
# Date created: 16 March 1995
# Whom: rmallory@csusb.edu
#
-# $Id: Makefile,v 1.6 1996/11/15 23:14:10 obrien Exp $
+# $Id: Makefile,v 1.7 1996/11/18 13:56:44 asami Exp $
#
-DISTNAME= rplay-3.2.0b5
+DISTNAME= rplay-3.2.0b6
CATEGORIES= audio
MASTER_SITES= ftp://ftp.sdsu.edu/pub/rplay/
MAINTAINER= rmallory@csusb.edu
+LIB_DEPENDS= gsm\\.1\\.0:${PORTSDIR}/audio/gsm
+
HAS_CONFIGURE= yes
USE_GMAKE= yes
+MAN1= rplay.1 xrplay.1 rplayd.1 rptp.1
MAN5= rplay.conf.5 rplay.hosts.5 rplay.servers.5
+post-install:
+ @if [ ! -f ${PREFIX}/etc/rc.d/rplayd.sh ]; then \
+ echo "Installing ${PREFIX}/etc/rc.d/rplayd.sh startup file."; \
+ echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/rplayd.sh; \
+ echo "[ -x /usr/local/sbin/rplayd ] && ( /usr/local/sbin/rplayd & ) && echo -n ' rplayd'" >> ${PREFIX}/etc/rc.d/rplayd.sh; \
+ chmod 751 ${PREFIX}/etc/rc.d/rplayd.sh; \
+ fi
+ @if [ ! -f ${PREFIX}/etc/rplay.hosts ]; then \
+ echo localhost > ${PREFIX}/etc/rplay.hosts; \
+ fi
+
.include <bsd.port.mk>