source: projects/specs/trunk/lib/libj/libjingle/libjingle-vl.spec @ 521

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

import VineSeed package specs

Line 
1Summary:        GoogleTalk implementation of Jingle
2Summary(ja):    Jingle の GoogleTalk 実装
3
4Name:           libjingle
5Version:        0.3.11
6Release:        1%{?_dist_release}
7
8Group:          System Environment/Libraries
9License:        BSD
10URL:            http://code.google.com/apis/talk/libjingle/
11Source0:        http://download.sourceforge.net/tapioca-voip/%{name}-%{version}.tar.gz
12Patch0:         %{name}-%{version}-gcc43.patch
13BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
14
15BuildRequires:  expat-devel
16BuildRequires:  openssl-devel
17BuildRequires:  pkgconfig
18
19
20%description
21Libjingle is Google Talk's implementation of Jingle and Jingle-Audio
22(proposed extensions to XMPP) to interoperate with Google Talk's
23peer-to-peer and voice calling capabilities.
24
25
26%package        devel
27Summary:        Development files for %{name}
28Summary(ja):        Development files for %{name}
29Group:          Development/Libraries
30Requires:       %{name} = %{version}-%{release}
31Requires:       pkgconfig
32Requires:       openssl-devel
33Requires:       expat-devel
34
35
36%description    devel
37The %{name}-devel package contains libraries and header files for
38developing applications that use %{name}.
39
40
41%prep
42%setup -q
43%patch0 -p0 -b .gcc43
44
45
46%build
47%configure --disable-static
48make %{?_smp_mflags}
49
50
51%install
52rm -rf $RPM_BUILD_ROOT
53make install DESTDIR=$RPM_BUILD_ROOT
54find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
55
56
57%clean
58rm -rf $RPM_BUILD_ROOT
59
60
61%post -p /sbin/ldconfig
62
63
64%postun -p /sbin/ldconfig
65
66
67%files
68%defattr(-,root,root,-)
69%doc COPYING ChangeLog
70%{_bindir}/relayserver
71%{_bindir}/stunserver
72%{_libdir}/*.so.*
73
74
75%files devel
76%defattr(-,root,root,-)
77%{_includedir}/%{name}-0.3/
78%{_libdir}/*.so
79%{_libdir}/pkgconfig/jinglebase-0.3.pc
80%{_libdir}/pkgconfig/jinglep2p-0.3.pc
81%{_libdir}/pkgconfig/jinglesession-0.3.pc
82%{_libdir}/pkgconfig/jinglexmllite-0.3.pc
83%{_libdir}/pkgconfig/jinglexmpp-0.3.pc
84
85
86%changelog
87* Fri Sep 26 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.3.11-1
88- initial build for Vine Linux
89
90* Sun Mar 16 2008 Brian Pepple <bpepple@localhost.localdomain> - 0.3.11-8
91- Add patch to fix build w/ gcc4.3.
92
93* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.3.11-7
94- Autorebuild for GCC 4.3
95
96* Fri Feb  8 2008 Brian Pepple <bpepple@fedoraproject.org> - 0.3.11-6
97- Rebuild for gcc-4.3.
98
99* Wed Dec  5 2007 Brian Pepple <bpepple@fedoraproject.org> - 0.3.11-5
100- rebuild for new libssl.so.6/libcrypto.so.6
101
102* Tue Aug 28 2007 Brian Pepple <bpepple@fedoraproject.org> - 0.3.11-4
103- Rebuild for expat 2.0.
104
105* Tue Aug 21 2007 Brian Pepple <bpepple@fedoraproject.org> - 0.3.11-3
106- Rebuild.
107
108* Wed Jun 27 2007 Brian Pepple <bpepple@fedoraproject.org> - 0.3.11-2
109- Update URL.
110
111* Fri May 18 2007 Brian Pepple <bpepple@fedoraproject.org> - 0.3.11-1
112- Update 0.3.11.
113
114* Mon Sep  4 2006 Brian Pepple <bpepple@fedoraproject.org> - 0.3.10-1
115- Initial FE spec.
Note: See TracBrowser for help on using the repository browser.