diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1996-11-11 23:17:44 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1996-11-11 23:17:44 +0000 |
commit | 8ac8c0f883e17ad3209823c2de3a6a1466eef5cc (patch) | |
tree | 6f4934cb15dfea35311d0551b196cb542642d602 /audio/speak_freely/Makefile | |
parent | c5b7b8c6aa097bf2b8697018d59a3ea612817caf (diff) | |
download | ports-8ac8c0f883e17ad3209823c2de3a6a1466eef5cc.tar.gz ports-8ac8c0f883e17ad3209823c2de3a6a1466eef5cc.zip |
Notes
Diffstat (limited to 'audio/speak_freely/Makefile')
-rw-r--r-- | audio/speak_freely/Makefile | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/audio/speak_freely/Makefile b/audio/speak_freely/Makefile new file mode 100644 index 000000000000..7114618568d0 --- /dev/null +++ b/audio/speak_freely/Makefile @@ -0,0 +1,50 @@ +# New ports collection makefile for: speak_freely +# Original WWW site: http://www.fourmilab.ch/speakfree/unix/index.html +# Version required: 6.1b +# Date created: 18 Apr 1996 +# Whom: ache +# +# $Id: Makefile,v 1.5 1996/10/25 16:49:22 ache Exp $ +# + +DISTNAME= speak_freely-6.1b +CATEGORIES+= net audio security +MASTER_SITES= http://www.fourmilab.ch/speakfree/unix/ + +MAINTAINER= ache@FreeBSD.ORG + +LIB_DEPENDS= gsm\\.1\\.0:${PORTSDIR}/audio/gsm + +UTILS= sfspeaker sfmike sflwl +DEMNS= sfecho sflwld +DDEMNS= sfvod +SFLIB= ${PREFIX}/lib/speak_freely + +do-install: + if [ ! -d ${SFLIB} ]; then \ + install -d -o ${BINOWN} -g ${BINGRP} -m 755 ${SFLIB}; \ + fi + cd ${WRKSRC}; \ + $(INSTALL_DATA) 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; +.if !defined(NOMANCOMPRESS) + for p in ${UTILS} ${DEMNS} ${DDEMNS}; do \ + gzip -9nf ${PREFIX}/man/man1/$$p.1; \ + done +.endif + +.include <bsd.port.mk> |