source: projects/specs/trunk/lib/libn/libnice/libnice-vl.spec @ 521

Revision 521, 3.2 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

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