libnice-vl.spec 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. Name: libnice
  2. Version: 0.1.1
  3. Release: 1%{?_dist_release}
  4. Summary: GLib ICE implementation
  5. Group: System Environment/Libraries
  6. License: LGPLv2 and MPLv1.1
  7. URL: http://nice.freedesktop.org/wiki/
  8. Source0: http://nice.freedesktop.org/releases/%{name}-%{version}.tar.gz
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  10. BuildRequires: glib2-devel >= 2.10
  11. BuildRequires: gstreamer-devel >= 0.10.0
  12. BuildRequires: gstreamer-plugins-base-devel >= 0.10.0
  13. BuildRequires: gupnp-igd-devel >= 0.1.2
  14. Vendor: Project Vine
  15. Distribution: Vine Linux
  16. %description
  17. %{name} is an implementation of the IETF's draft Interactive Connectivity
  18. Establishment standard (ICE). ICE is useful for applications that want to
  19. establish peer-to-peer UDP data streams. It automates the process of traversing
  20. NATs and provides security against some attacks. Existing standards that use
  21. ICE include the Session Initiation Protocol (SIP) and Jingle, XMPP extension
  22. for audio/video calls.
  23. %package devel
  24. Summary: Development files for %{name}
  25. Group: Development/Libraries
  26. Requires: %{name} = %{version}-%{release}
  27. Requires: glib2-devel
  28. Requires: pkgconfig
  29. %description devel
  30. The %{name}-devel package contains libraries and header files for
  31. developing applications that use %{name}.
  32. %prep
  33. %setup -q
  34. %build
  35. %configure --disable-static
  36. sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
  37. sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
  38. make %{?_smp_mflags}
  39. %install
  40. rm -rf $RPM_BUILD_ROOT
  41. make install DESTDIR=$RPM_BUILD_ROOT
  42. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
  43. %clean
  44. rm -rf $RPM_BUILD_ROOT
  45. %post -p /sbin/ldconfig
  46. %postun -p /sbin/ldconfig
  47. %files
  48. %defattr(-,root,root,-)
  49. %doc NEWS README COPYING COPYING.LGPL COPYING.MPL
  50. %{_bindir}/stunbdc
  51. %{_bindir}/stund
  52. %{_libdir}/gstreamer-0.10/libgstnice.so
  53. %{_libdir}/*.so.*
  54. %files devel
  55. %defattr(-,root,root,-)
  56. %{_includedir}/*
  57. %{_libdir}/*.so
  58. %{_libdir}/pkgconfig/nice.pc
  59. %{_datadir}/gtk-doc/html/%{name}
  60. %changelog
  61. * Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.1-1
  62. - new upstream release
  63. * Mon Aug 15 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.0-1
  64. - new upstream release
  65. * Sun Oct 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.0.13-1
  66. - new upstream release
  67. * Sun Oct 03 2010 Shu KONNO <owa@bg.wakwak.com> 0.0.9-4
  68. - rebuilt with rpm-4.8.1 for pkg-config
  69. * Sat Nov 7 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.0.9-3
  70. - initial build for Vine Linux
  71. * Thu Sep 17 2009 Bastien Nocera <bnocera@redhat.com> 0.0.9-2
  72. - Rebuild for new gupnp
  73. * Sun Aug 2 2009 Brian Pepple <bpepple@fedoraproject.org> - 0.0.9-1
  74. - Update to 0.0.9.
  75. - Drop sha1 patch. Fixed upstream.
  76. * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.8-3
  77. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  78. * Tue Jul 21 2009 Warren Togami <wtogami@redhat.com> - 0.0.8-2
  79. - stun sha1 patch from upstream to make it work at all
  80. * Sun Jun 21 2009 Brian Pepple <bpepple@fedoraproject.org> - 0.0.8-1
  81. - Update to 0.0.8.
  82. * Sun Jun 14 2009 Brian Pepple <bpepple@fedoraproject.org> - 0.0.7-1
  83. - Update to 0.0.7.
  84. - Add BR on gupnp-igd-devel.
  85. * Mon Apr 13 2009 Brian Pepple <bpepple@fedoraproject.org> - 0.0.6-1
  86. - Update to 0.0.6.
  87. * Wed Mar 18 2009 Brian Pepple <bpepple@fedoraproject.org> - 0.0.5-1
  88. - Update to 0.0.5.
  89. * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.4-2
  90. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  91. * Sat Dec 27 2008 Brian Pepple <bpepple@fedoraproject.org> - 0.0.4-1
  92. - Initial Fedora spec.