aboutsummaryrefslogtreecommitdiff
path: root/audio/rplay/Makefile
blob: 6bcbd3485681a899af4868d4f1c98bd58f68ba11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# New ports collection makefile for:	rplay - Network audio player
# Date created:		16 March 1995
# Whom:			rmallory@csusb.edu
#
# $FreeBSD$
#

PORTNAME=	rplay
PORTVERSION=	3.3.2
PORTREVISION=	3
CATEGORIES=	audio
MASTER_SITES=	http://rplay.doit.org/dist/

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Network audio player

LIB_DEPENDS=	gsm.1:${PORTSDIR}/audio/gsm

USE_LDCONFIG=	yes
GNU_CONFIGURE=	yes
CONFIGURE_ENV=	LIBS="-L${LOCALBASE}/lib"
CPPFLAGS+=	-I${LOCALBASE}/include

MAN1=		rplay.1 rptp.1
MAN5=		rplay.conf.5 rplay.helpers.5 rplay.hosts.5 rplay.servers.5
MAN8=		rplayd.8

INFO=		RPLAY RPTP librplay rplayd

.include <bsd.port.pre.mk>

USE_RC_SUBR=	rplayd

.if ${ARCH} == "amd64"
# pr ports/166658 mentions a problem with amd64. if it happens on i386, you can delete this conditional
# and rename to patch-ao
EXTRA_PATCHES=	${FILESDIR}/extra-patch-ao
.endif

post-extract:
	@${CP} ${WRKSRC}/doc/rplay.texi ${WRKSRC}/doc/rplayd.texi

post-install:
	@${ECHO_MSG} "===>	startup file as ${PREFIX}/etc/rc.d/rplayd"
	@${MKDIR} ${PREFIX}/etc/
	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
	@${ECHO_CMD} localhost > ${PREFIX}/etc/rplay.hosts.sample

.include <bsd.port.post.mk>