Switch commoncpp2 to ucommon to solve dependency conflicts.

libccrtp was depending on commoncpp2, and have been replaced by a version
depending on ucommon as well.
diff --git a/jni/libccrtp/sources/libccrtp.spec.cmake b/jni/libccrtp/sources/libccrtp.spec.cmake
new file mode 100644
index 0000000..8d0c6bd
--- /dev/null
+++ b/jni/libccrtp/sources/libccrtp.spec.cmake
@@ -0,0 +1,133 @@
+#
+# spec file for package libccrtp (Version 1.6.2)
+#
+# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+#
+# All modifications and additions to the file contributed by third parties
+# remain the property of their copyright owners, unless otherwise agreed
+# upon. The license for this file, and modifications and additions to the
+# file, is the same license as for the pristine package itself (unless the
+# license for the pristine package is not an Open Source License, in which
+# case the license is the MIT License). An "Open Source License" is a
+# license that conforms to the Open Source Definition (Version 1.9)
+# published by the Open Source Initiative.
+
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
+
+# norootforbuild
+
+
+Name:           libccrtp
+BuildRequires:  commoncpp2-devel gcc-c++ openssl-devel pkgconfig cmake
+Url:            http://www.gnu.org/software/ccrtp/
+License:        GPL v3 or later
+Group:          System/Libraries
+BuildRoot:      %{_tmppath}/%{name}-%{version}-build
+AutoReqProv:    on
+Summary:        A Common C++ Class Framework for RTP Packets
+Version:        @VERSION@
+Release:        2
+Source0:        ccrtp-%{version}.tar.bz2
+Source1:        rpmlintrc
+
+%description
+The ccrtp package offers a generic framework for sending and receiving
+real-time streaming data over UDP packets using sending and receiving
+packet queues.
+
+
+
+Authors:
+--------
+    David Sugar <dyfet@ostel.com>
+    Frederico Montesino Pouzols <p5087@quintero.fie.us.es>
+
+%package -n libccrtp2
+License:        GPL v3 or later
+Group:          System/Libraries
+Summary:        A Common C++ Class Framework for RTP Packets
+Provides:       ccrtp = %{version}
+Provides:       %{name} = %{version}
+Obsoletes:      ccrtp < %{version}
+Obsoletes:      %{name} < %{version}
+
+%description -n libccrtp2
+The ccrtp package offers a generic framework for sending and receiving
+real-time streaming data over UDP packets using sending and receiving
+packet queues.
+
+
+
+Authors:
+--------
+    David Sugar <dyfet@ostel.com>
+    Frederico Montesino Pouzols <p5087@quintero.fie.us.es>
+
+%package devel
+License:        GPL v3 or later
+Summary:        Include-files and documentation for ccrtp
+Group:          Development/Libraries/Other
+Requires:       %{name} = %{version} commoncpp2-devel
+PreReq:         %install_info_prereq
+
+%description devel
+This package contains files needed when developing applications using
+ccrtp
+
+
+
+Authors:
+--------
+    David Sugar <dyfet@ostel.com>
+    Frederico Montesino Pouzols <p5087@quintero.fie.us.es>
+
+%prep
+%setup -q -n ccrtp-%version
+
+%build
+mkdir build
+cd build
+
+cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} \
+      -DSYSCONFDIR=%{_sysconfdir} \
+      -DMANDIR=%{_mandir} \
+      -DCMAKE_VERBOSE_MAKEFILE=TRUE \
+      -DCMAKE_C_FLAGS_RELEASE:STRING="$RPM_OPT_FLAGS" \
+      -DCMAKE_CXX_FLAGS_RELEASE:STRING="$RPM_OPT_FLAGS" \
+      ..
+
+make %{?_smp_mflags}
+
+
+%install
+cd build
+make install DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT;
+
+%post -n libccrtp2 -p /sbin/ldconfig
+
+%postun -n libccrtp2 -p /sbin/ldconfig
+
+%files -n libccrtp2
+%defattr(-,root,root,0755)
+%_libdir/libccrtp*.so.*
+
+%files devel
+%defattr(-,root,root,0755)
+%doc AUTHORS COPYING NEWS README TODO ChangeLog
+%_libdir/libccrtp*.so
+%_libdir/pkgconfig/libccrtp.pc
+%dir %{_includedir}/ccrtp
+%{_includedir}/ccrtp/*.h
+%{_infodir}/ccrtp.info*
+
+%post devel
+%install_info --info-dir=%{_infodir} %{_infodir}/ccrtp.info.gz
+
+%postun devel
+%install_info_delete --info-dir=%{_infodir} %{_infodir}/ccrtp.info.gz
+
+%changelog