mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
a87c59f352
previous pcm driver and newpcm. This replacement port adds newpcm mixer support and brings port up to date with the current rat release (4.2.9). PR: 21333 Submitted by: maintainer
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# New ports collection makefile for: rat
|
|
# Date created: 3 July 1999
|
|
# Whom: O.Hodson@cs.ucl.ac.uk (Orion Hodson)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rat
|
|
PORTVERSION= 4.2.9
|
|
CATEGORIES= mbone audio
|
|
MASTER_SITES= http://www-mice.cs.ucl.ac.uk/multimedia/software/rat/4.2.9/ \
|
|
${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= cpiazza
|
|
|
|
MAINTAINER= O.Hodson@cs.ucl.ac.uk
|
|
|
|
LIB_DEPENDS= tk82.1:${PORTSDIR}/x11-toolkits/tk82
|
|
|
|
USE_AUTOCONF= yes
|
|
USE_GMAKE= yes
|
|
MAN1= rat.1
|
|
MANCOMPRESSED= no
|
|
|
|
PATCH_DEBUG= yes
|
|
|
|
RAT_BUILD_DIRS= common rat
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/rat/rat ${PREFIX}/bin/rat
|
|
${INSTALL_PROGRAM} ${WRKSRC}/rat/rat-ui ${PREFIX}/bin/rat-ui
|
|
${INSTALL_PROGRAM} ${WRKSRC}/rat/rat-media ${PREFIX}/bin/rat-media
|
|
${INSTALL_MAN} ${WRKSRC}/rat/man/man1/rat.1 ${PREFIX}/man/man1
|
|
${MKDIR} ${LOCALBASE}/etc/sdr/plugins
|
|
${INSTALL_DATA} ${WRKSRC}/rat/sdr2.plugin.S02.audio.rtp.*.rat ${LOCALBASE}/etc/sdr/plugins
|
|
|
|
do-build:
|
|
for d in ${RAT_BUILD_DIRS}; do \
|
|
cd ${WRKSRC}/$$d && ${GMAKE}; \
|
|
done
|
|
|
|
do-configure:
|
|
cd ${WRKSRC}/common && ./configure
|
|
cd ${WRKSRC}/rat && autoconf && ./configure --with-tcl=${LOCALBASE} --with-tk=${LOCALBASE}
|
|
|
|
.include "bsd.port.mk"
|