svn commit: r323479 - in head/net: . ilbc libilbc
Marcus von Appen
mva at FreeBSD.org
Mon Jul 22 17:07:00 UTC 2013
Author: mva
Date: Mon Jul 22 17:06:58 2013
New Revision: 323479
URL: http://svnweb.freebsd.org/changeset/ports/323479
Log:
iLBC (internet Low Bitrate Codec) is a FREE speech codec suitable for robust
voice communication over IP. The codec is designed for narrow band speech and
results in a payload bit rate of 13.33 kbit/s with an encoding frame length
of 30 ms and 15.20 kbps with an encoding length of 20 ms. The iLBC codec
enables graceful speech quality degradation in the case of lost frames,
which occurs in connection with lost or delayed IP packets.
WWW: http://github.com/dekkers/libilbc
Added:
head/net/libilbc/
head/net/libilbc/Makefile (contents, props changed)
head/net/libilbc/distinfo (contents, props changed)
head/net/libilbc/pkg-descr (contents, props changed)
head/net/libilbc/pkg-plist (contents, props changed)
Modified:
head/net/Makefile
head/net/ilbc/Makefile (contents, props changed)
Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile Mon Jul 22 16:47:52 2013 (r323478)
+++ head/net/Makefile Mon Jul 22 17:06:58 2013 (r323479)
@@ -322,6 +322,7 @@
SUBDIR += libfixbuf
SUBDIR += libgnetwork
SUBDIR += libgweather
+ SUBDIR += libilbc
SUBDIR += libkvkontakte
SUBDIR += libmediawiki
SUBDIR += libmms
Modified: head/net/ilbc/Makefile
==============================================================================
--- head/net/ilbc/Makefile Mon Jul 22 16:47:52 2013 (r323478)
+++ head/net/ilbc/Makefile Mon Jul 22 17:06:58 2013 (r323479)
@@ -13,6 +13,8 @@ MASTER_SITES= http://simon.morlat.free.f
MAINTAINER= asm at asm.kiev.ua
COMMENT= Internet Low Bit Rate codec (RFC3951)
+CONFLICTS= libilbc-[0-9]*
+
USE_AUTOTOOLS= libtool
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
Added: head/net/libilbc/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/libilbc/Makefile Mon Jul 22 17:06:58 2013 (r323479)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME= libilbc
+DISTVERSION= 1.1.1
+CATEGORIES= net
+
+MAINTAINER= mva at FreeBSD.org
+COMMENT= Internet Low Bit Rate codec (RFC3951)
+
+LICENSE= BSD
+LICENSE_FILE= ${WRKSRC}/COPYING
+
+CONFLICTS= ilbc-r[0-9]*
+
+USE_GITHUB= yes
+GH_ACCOUNT= dekkers
+GH_COMMIT= b5f9b10
+GH_TAGNAME= ${GH_COMMIT}
+
+USES= cmake
+USE_LDCONFIG= yes
+
+post-patch:
+ ${REINPLACE_CMD} -e 's|lib/$${CMAKE_LIBRARY_ARCHITECTURE}/pkgconfig|libdata/pkgconfig|' ${WRKSRC}/CMakeLists.txt
+
+.include <bsd.port.mk>
Added: head/net/libilbc/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/libilbc/distinfo Mon Jul 22 17:06:58 2013 (r323479)
@@ -0,0 +1,2 @@
+SHA256 (libilbc-1.1.1.tar.gz) = 1f0cf2fa0ebaef300dbbe201a4cd4dc4661d6744fea37aa946080471de4161bd
+SIZE (libilbc-1.1.1.tar.gz) = 152937
Added: head/net/libilbc/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/libilbc/pkg-descr Mon Jul 22 17:06:58 2013 (r323479)
@@ -0,0 +1,8 @@
+iLBC (internet Low Bitrate Codec) is a FREE speech codec suitable for robust
+voice communication over IP. The codec is designed for narrow band speech and
+results in a payload bit rate of 13.33 kbit/s with an encoding frame length
+of 30 ms and 15.20 kbps with an encoding length of 20 ms. The iLBC codec
+enables graceful speech quality degradation in the case of lost frames,
+which occurs in connection with lost or delayed IP packets.
+
+WWW: http://github.com/dekkers/libilbc
Added: head/net/libilbc/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net/libilbc/pkg-plist Mon Jul 22 17:06:58 2013 (r323479)
@@ -0,0 +1,6 @@
+include/ilbc.h
+lib/libilbc.a
+lib/libilbc.so
+lib/libilbc.so.1
+lib/libilbc.so.1.1.1
+libdata/pkgconfig/libilbc.pc
More information about the svn-ports-head
mailing list