4f018d7aa4
It comes with a few basic SipStone user-agents scenarios (UAC & UAS), i establishing and releasing multiple calls with the INVITE and BYE methods. WWW: http://sipp.sourceforge.net/ PR: 68036 Submitted by: Jesper Dalberg <jesper@jdn.dk> Approved by: erwin (mentor)
29 lines
585 B
Makefile
29 lines
585 B
Makefile
# New ports collection makefile for: sipp
|
|
# Date created: 15 Jun 2004
|
|
# Whom: jesper@jdn.dk
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sipp
|
|
PORTVERSION= 0.3
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED}
|
|
MASTER_SITE_SUBDIR= sipp
|
|
|
|
MAINTAINER= jesper@jdn.dk
|
|
COMMENT= SIP testing tool
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
PLIST_FILES= bin/sipp
|
|
MAN1= sipp.1
|
|
|
|
pre-install:
|
|
@${CP} ${FILESDIR}/${MAN1} ${WRKSRC}/
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/sipp.1 ${PREFIX}/man/man1/sipp.1
|
|
|
|
.include <bsd.port.mk>
|