mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-20 08:27:15 +00:00
ed05eef8e8
VoIPong is an utility which detects all Voice Over IP calls on a pipeline, and dumps those which are G711-encoded to separate wave files. It supports SIP, H323, Cisco's Skinny Client Protocol, RTP and RTCP. For performance reasons, it is written in the C programming language. WWW: http://www.enderunix.org/voipong/ PR: ports/81326 Submitted by: Necati Ersen SISECI <siseci@enderunix.org>
32 lines
675 B
Makefile
32 lines
675 B
Makefile
# New ports collection makefile for: voipong
|
|
# Date created: 20 May 2005
|
|
# Whom: Necati Ersen SISECI <siseci@enderunix.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= voipong
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.enderunix.org/voipong/
|
|
|
|
MAINTAINER= siseci@enderunix.org
|
|
COMMENT= Detect Voice Over IP calls and dump them to separate wave files
|
|
|
|
USE_REINPLACE= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^CFLAGS=""||' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e \
|
|
's|$${prefix}/share/voipong|${DOCSDIR}|; \
|
|
s|COPYING||; s|LICENSE||' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|