8d6597e0bb
With hat: portmgr Sponsored by: Absolight
34 lines
710 B
Makefile
34 lines
710 B
Makefile
# Created by: sobomax
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rtpproxy
|
|
PORTVERSION= 2.0.0
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
|
|
MAINTAINER= farrokhi@FreeBSD.org
|
|
COMMENT= High-performance RTP proxy server for the SIP Express Router (SER)
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
LIB_DEPENDS= libgsm.so:audio/gsm
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= sippy
|
|
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
|
|
USERS= ${PORTNAME}
|
|
GROUPS= ${PORTNAME}
|
|
|
|
post-build:
|
|
${SED} 's|%%PREFIX%%|${PREFIX}|g ; s|%%RC_SUBR%%|/etc/rc.subr|g' \
|
|
${WRKSRC}/scripts/rtpproxy.in.freebsd > ${WRKDIR}/rtpproxy
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/rtpproxy ${STAGEDIR}${PREFIX}/etc/rc.d/rtpproxy
|
|
|
|
.include <bsd.port.mk>
|