Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Julien ROZO (b1e6898f4ea85e93d5e3fc37da02e63fbf72b8db)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Julien ROZO <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Julien ROZO (b1e6898f4ea85e93d5e3fc37da02e63fbf72b8db)
  • Date: Mon, 22 Aug 2011 08:46:21 -0500

GIT changes to master grimoire by Julien ROZO <julien AT rozo.org>:

ChangeLog | 4 ++++
telephony/libsrtp/DETAILS | 15 +++++++++++++++
telephony/libsrtp/HISTORY | 3 +++
telephony/ortp/BUILD | 9 +++++++++
telephony/ortp/CONFIGURE | 1 +
telephony/ortp/DEPENDS | 1 +
telephony/ortp/DETAILS | 2 +-
telephony/ortp/HISTORY | 7 +++++++
8 files changed, 41 insertions(+), 1 deletion(-)

New commits:
commit 2bb068f6ebf3455896220bc6d6095719b9372010
Author: Julien ROZO <julien AT rozo.org>
Commit: Julien ROZO <julien AT rozo.org>

ortp: updated version to 0.16.5
added libsrtp as an optional dependency (to enable secure real-time
transport protocol support in ortp)
added CONFIGURE to enable/disable IPv6
added BUILD to fix compilation issue with gcc 4.6.x (strict compilation,
warnings as errors), and to build 64bit library on such systems

commit b915e540fe463a38dcda11e0a7819941b3dfc28b
Author: Julien ROZO <julien AT rozo.org>
Commit: Julien ROZO <julien AT rozo.org>

libsrtp: new spell, an open-source implementation of the Secure
Real-time Transport Protocol

diff --git a/ChangeLog b/ChangeLog
index dd59264..8f6efc2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-08-22 Julien "_kaze_" ROZO <julien AT rozo.org>
+ * telephony/libsrtp: new spell, an open-source implementation of the
+ Secure Real-time Transport Protocol
+
2011-08-20 Bor Kraljič <pyrobor AT ver.si>
* kernels/ath5k: removed. Source no longer available.
* gnome2-apps/gphpedit: removed. Source no longer available.
diff --git a/telephony/libsrtp/DETAILS b/telephony/libsrtp/DETAILS
new file mode 100755
index 0000000..47975f7
--- /dev/null
+++ b/telephony/libsrtp/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=libsrtp
+ VERSION=1.4.2
+ SOURCE="srtp-${VERSION}.tgz"
+ SOURCE_URL[0]=http://srtp.sourceforge.net/${SOURCE}
+
SOURCE_HASH=sha512:1acbcf7dce06918e1ee5e11b1663f7e9b93659e7af957ea6a1ec0a9595c53e5459888b70895ea534159d79a63bd37fd23a525cad99ab8b68c80b085b38195b20
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/srtp"
+ WEB_SITE="http://srtp.sourceforge.net/srtp.html";
+ LICENSE[0]=BSD
+ ENTERED=20110822
+ SHORT="open-source implementation of the Secure Real-time
Transport Protocol (SRTP)"
+cat << EOF
+The libSRTP library is an open-source implementation of the Secure Real-time
+Transport Protocol (SRTP) originally authored by Cisco Systems, Inc. It is
+available under a BSD-style license.
+EOF
diff --git a/telephony/libsrtp/HISTORY b/telephony/libsrtp/HISTORY
new file mode 100644
index 0000000..4819d50
--- /dev/null
+++ b/telephony/libsrtp/HISTORY
@@ -0,0 +1,3 @@
+2011-08-22 Julien _kaze_ ROZO <julien AT rozo.org>
+ * DETAILS, HISTORY: spell created
+
diff --git a/telephony/ortp/BUILD b/telephony/ortp/BUILD
new file mode 100755
index 0000000..de97e41
--- /dev/null
+++ b/telephony/ortp/BUILD
@@ -0,0 +1,9 @@
+# fix compilation issue with gcc 4.6.x
+OPTS="${OPTS} --disable-strict" &&
+
+# build 64bit library on such system
+if [[ "${SMGL_COMPAT_ARCHS[1]}" == "x86_64" ]]; then
+ OPTS="${OPTS} --enable-mode64bit=yes"
+fi &&
+
+default_build
diff --git a/telephony/ortp/CONFIGURE b/telephony/ortp/CONFIGURE
new file mode 100755
index 0000000..b7a5474
--- /dev/null
+++ b/telephony/ortp/CONFIGURE
@@ -0,0 +1 @@
+config_query_option ORTP_IPV6 "Enable IPv6 support?" y "--enable-ipv6"
"--disable-ipv6"
diff --git a/telephony/ortp/DEPENDS b/telephony/ortp/DEPENDS
index 86ccb19..10f0cc9 100755
--- a/telephony/ortp/DEPENDS
+++ b/telephony/ortp/DEPENDS
@@ -1,2 +1,3 @@
optional_depends openssl '' '' 'encryption support' &&
+optional_depends libsrtp '' '' 'secure transport support' &&
optional_depends gtk-doc "" "" "for documentation"
diff --git a/telephony/ortp/DETAILS b/telephony/ortp/DETAILS
index 2480eca..84cab85 100755
--- a/telephony/ortp/DETAILS
+++ b/telephony/ortp/DETAILS
@@ -1,5 +1,5 @@
SPELL=ortp
- VERSION=0.16.1
+ VERSION=0.16.5
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
SOURCE2=$SOURCE.sig
diff --git a/telephony/ortp/HISTORY b/telephony/ortp/HISTORY
index c83dc95..728513a 100644
--- a/telephony/ortp/HISTORY
+++ b/telephony/ortp/HISTORY
@@ -1,3 +1,10 @@
+2011-08-18 Julien "_kaze_" ROZO <julien AT rozo.org>
+ * DETAILS: updated version to 0.16.5
+ * DEPENDS: added libsrtp as an optional dependency
+ * CONFIGURE: added, option to enable/disable IPv6
+ * BUILD: added, fix compilation issue with gcc 4.6.x, and generate
+ 64bit library on such systems
+
2010-06-24 Treeve Jelbert <treeve AT sourcemage.org>
* DEPENDS: add optional openssl




  • [SM-Commit] GIT changes to master grimoire by Julien ROZO (b1e6898f4ea85e93d5e3fc37da02e63fbf72b8db), Julien ROZO, 08/22/2011

Archive powered by MHonArc 2.6.24.

Top of Page