svn commit: r303468 - in head/audio: . re

Chris Rees crees at FreeBSD.org
Sat Sep 1 11:38:02 UTC 2012


Author: crees
Date: Sat Sep  1 11:38:01 2012
New Revision: 303468
URL: http://svn.freebsd.org/changeset/ports/303468

Log:
  Libre is a portable and generic library for real-time communications
  with async IO support and a complete SIP stack with support for SDP,
  RTP/RTCP, STUN/TURN/ICE, BFCP and DNS Client.
  
  Features:
  
  - SIP Stack (RFC 3261)
  - SDP
  - RTP and RTCP
  - DNS-Client
  - STUN/TURN/ICE
  - BFCP
  - Jitter-buffer
  - Async I/O (poll, epoll, select)
  - UDP/TCP/TLS transport
  
  WWW: http://www.creytiv.com/re.html

Added:
  head/audio/re/
  head/audio/re/Makefile   (contents, props changed)
  head/audio/re/distinfo   (contents, props changed)
  head/audio/re/pkg-descr   (contents, props changed)
  head/audio/re/pkg-plist   (contents, props changed)
Modified:
  head/audio/Makefile

Modified: head/audio/Makefile
==============================================================================
--- head/audio/Makefile	Sat Sep  1 11:36:03 2012	(r303467)
+++ head/audio/Makefile	Sat Sep  1 11:38:01 2012	(r303468)
@@ -626,6 +626,7 @@
     SUBDIR += raproxy
     SUBDIR += raul
     SUBDIR += rawrec
+    SUBDIR += re
     SUBDIR += rebot3
     SUBDIR += resid
     SUBDIR += rexima

Added: head/audio/re/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/re/Makefile	Sat Sep  1 11:38:01 2012	(r303468)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	re
+PORTVERSION=	0.4.0
+CATEGORIES=	audio devel
+MASTER_SITES=	http://www.creytiv.com/pub/
+
+MAINTAINER=	crees at FreeBSD.org
+COMMENT=	Library for real-time comms with async IO support
+
+USE_LDCONFIG=	yes
+USE_GMAKE=	yes
+
+PORTDATA=	re.mk
+
+do-install:
+	${MKDIR} ${PREFIX}/include/${PORTNAME} ${DATADIR}
+	(cd ${WRKSRC}/include && \
+	    ${COPYTREE_SHARE} \*.h ${PREFIX}/include/${PORTNAME})
+	${INSTALL_DATA} ${WRKSRC}/mk/${PORTNAME}.mk ${DATADIR}
+	${INSTALL_LIB} ${WRKSRC}/lib${PORTNAME}.[sa]* ${PREFIX}/lib
+
+.include <bsd.port.mk>

Added: head/audio/re/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/re/distinfo	Sat Sep  1 11:38:01 2012	(r303468)
@@ -0,0 +1,2 @@
+SHA256 (re-0.4.0.tar.gz) = 1057da19d56dd44ca8d36202aeb5801f611bc9840840e19f55c4f17388de0683
+SIZE (re-0.4.0.tar.gz) = 252293

Added: head/audio/re/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/re/pkg-descr	Sat Sep  1 11:38:01 2012	(r303468)
@@ -0,0 +1,17 @@
+Libre is a portable and generic library for real-time communications
+with async IO support and a complete SIP stack with support for SDP,
+RTP/RTCP, STUN/TURN/ICE, BFCP and DNS Client.
+
+Features:
+
+- SIP Stack (RFC 3261)
+- SDP
+- RTP and RTCP
+- DNS-Client
+- STUN/TURN/ICE
+- BFCP
+- Jitter-buffer
+- Async I/O (poll, epoll, select)
+- UDP/TCP/TLS transport
+
+WWW: http://www.creytiv.com/re.html

Added: head/audio/re/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/re/pkg-plist	Sat Sep  1 11:38:01 2012	(r303468)
@@ -0,0 +1,45 @@
+include/re/re_net.h
+include/re/re_list.h
+include/re/re_hash.h
+include/re/re_stun.h
+include/re/re_tls.h
+include/re/re_lock.h
+include/re/re_base64.h
+include/re/re_bfcp.h
+include/re/re_sip.h
+include/re/re_dbg.h
+include/re/re_sys.h
+include/re/re_tmr.h
+include/re/re_types.h
+include/re/re_mbuf.h
+include/re/re_mem.h
+include/re/re_mqueue.h
+include/re/re_crc32.h
+include/re/re_main.h
+include/re/re_uri.h
+include/re/re_jbuf.h
+include/re/re_sipevent.h
+include/re/re_telev.h
+include/re/re_httpauth.h
+include/re/re_dns.h
+include/re/re_ice.h
+include/re/re_sdp.h
+include/re/re.h
+include/re/re_conf.h
+include/re/re_rtp.h
+include/re/re_md5.h
+include/re/re_fmt.h
+include/re/re_turn.h
+include/re/re_sipreg.h
+include/re/re_natbd.h
+include/re/re_bitv.h
+include/re/re_sa.h
+include/re/re_sha.h
+include/re/re_mod.h
+include/re/re_sipsess.h
+include/re/re_hmac.h
+include/re/re_tcp.h
+include/re/re_udp.h
+lib/libre.so
+lib/libre.a
+ at dirrm include/re



More information about the svn-ports-all mailing list