Add sipsak 0.8.1, small command line tool for SIP testing.
Sipsak is a small command line tool for developers and administrators of Session Initiation Protocol (SIP) applications. It can be used for some simple tests on SIP applications and services. WWW: http://sipsak.berlios.de/ PR: 53923 Submitted by: jesusr@FreeBSD.org
This commit is contained in:
parent
753126c8ec
commit
3ba1a3ce97
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=96142
5 changed files with 40 additions and 0 deletions
|
@ -644,6 +644,7 @@
|
|||
SUBDIR += simicq
|
||||
SUBDIR += sing
|
||||
SUBDIR += sipcalc
|
||||
SUBDIR += sipsak
|
||||
SUBDIR += slirp
|
||||
SUBDIR += slurm
|
||||
SUBDIR += smbfs
|
||||
|
|
29
net/sipsak/Makefile
Normal file
29
net/sipsak/Makefile
Normal file
|
@ -0,0 +1,29 @@
|
|||
# New ports collection makefile for: sipsak
|
||||
# Date created: 2003-06-30
|
||||
# Whom: jesusr
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= sipsak
|
||||
PORTVERSION= 0.8.1
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://download.berlios.de/sipsak/
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
||||
MAINTAINER= jesusr@FreeBSD.org
|
||||
COMMENT= Small command line tool for SIP testing
|
||||
|
||||
MAN1= sipsak.1
|
||||
|
||||
do-build:
|
||||
cd ${WRKSRC} && \
|
||||
${CC} ${CFLAGS} -c md5.c && \
|
||||
${CC} ${CFLAGS} -c sipsak.c && \
|
||||
${CC} ${LDFLAGS} -o sipsak md5.o sipsak.o
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/sipsak ${PREFIX}/bin
|
||||
${INSTALL_MAN} ${WRKSRC}/sipsak.1 ${MAN1PREFIX}/man/man1
|
||||
|
||||
.include <bsd.port.mk>
|
1
net/sipsak/distinfo
Normal file
1
net/sipsak/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (sipsak-0.8.1.tgz) = 52d7799baee1af23c0fed682a620a867
|
7
net/sipsak/pkg-descr
Normal file
7
net/sipsak/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
|||
Sipsak is a small command line tool for developers and administrators of
|
||||
Session Initiation Protocol (SIP) applications.
|
||||
It can be used for some simple tests on SIP applications and services.
|
||||
|
||||
WWW: http://sipsak.berlios.de/
|
||||
|
||||
- JesusR <jesusr@freebsd.org>
|
2
net/sipsak/pkg-plist
Normal file
2
net/sipsak/pkg-plist
Normal file
|
@ -0,0 +1,2 @@
|
|||
@comment $FreeBSD$
|
||||
bin/sipsak
|
Loading…
Reference in a new issue