From owner-svn-ports-head@FreeBSD.ORG Sat Sep 1 11:38:02 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AA43E106564A; Sat, 1 Sep 2012 11:38:02 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 940898FC0C; Sat, 1 Sep 2012 11:38:02 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q81Bc2Pk002459; Sat, 1 Sep 2012 11:38:02 GMT (envelope-from crees@svn.freebsd.org) Received: (from crees@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q81Bc2Ax002452; Sat, 1 Sep 2012 11:38:02 GMT (envelope-from crees@svn.freebsd.org) Message-Id: <201209011138.q81Bc2Ax002452@svn.freebsd.org> From: Chris Rees Date: Sat, 1 Sep 2012 11:38:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r303468 - in head/audio: . re X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Sep 2012 11:38:02 -0000 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@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 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 +@dirrm include/re