aboutsummaryrefslogtreecommitdiff
path: root/audio/speak_freely/Makefile
blob: 4da1caa45b21f0769ef94aa384e58b2fe097d610 (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
# New ports collection makefile for:    speak_freely
# Date created:         18 Apr 1996
# Whom:                 Mister X (to make portlint happy ;)
#
# $FreeBSD$
#

PORTNAME=	speak_freely
PORTVERSION=	7.5
CATEGORIES=	mbone audio security
MASTER_SITES=	http://www.fourmilab.ch/speakfree/unix/download/${PORTVERSION}/

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Voice Communication Over Data Networks

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

UTILS=		sfspeaker sfmike sflwl sflaunch
DEMNS=		sfecho sflwld sfreflect
DDEMNS=		sfvod
SFLIB=		${PREFIX}/lib/speak_freely
MAN1=		${UTILS:S/$/.1/} ${DEMNS:S/$/.1/} ${DDEMNS:S/$/.1/}

MAKE_ENV=	"OPTFLAGS=${CFLAGS}"

post-patch:
	@${SED} -e 's,machine/soundcard.h,sys/soundcard.h,' < \
		${WRKSRC}/soundbyte.c > ${WRKSRC}/soundbyte.c.new
	@${MV} ${WRKSRC}/soundbyte.c.new ${WRKSRC}/soundbyte.c

do-install:
	if [ ! -d ${SFLIB} ]; then \
		${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 ${SFLIB}; \
	fi
	cd ${WRKSRC}; \
	$(INSTALL_DATA) busy.au ring.au ${SFLIB}
	cd ${WRKSRC}; \
	for p in ${UTILS}; do \
		$(INSTALL_PROGRAM) $$p ${PREFIX}/bin; \
		$(INSTALL_MAN) $$p.1 ${PREFIX}/man/man1; \
	done;
	cd ${WRKSRC}; \
	for p in ${DEMNS}; do \
		$(INSTALL_PROGRAM) $$p ${PREFIX}/sbin; \
		$(INSTALL_MAN) $$p.1 ${PREFIX}/man/man1; \
	done;
	cd ${WRKSRC}; \
	for p in ${DDEMNS}; do \
		$(INSTALL_SCRIPT) $$p ${PREFIX}/sbin; \
		$(INSTALL_MAN) $$p.1 ${PREFIX}/man/man1; \
	done;

.include <bsd.port.mk>