linphone/linphone.spec

387 lines
12 KiB
RPMSpec
Raw Normal View History

2012-02-20 14:21:13 +00:00
%global novideo 1
Name: linphone
2012-02-22 18:35:54 +00:00
Version: 3.5.2
Release: 6%{?dist}
Summary: Phone anywhere in the whole world by using the Internet
2007-08-29 05:23:07 +00:00
License: GPLv2+
URL: http://www.linphone.org/
2012-03-01 16:53:31 +00:00
Source0: http://download.savannah.gnu.org/releases/linphone/3.5.x/sources/%{name}-%{version}.tar.gz
2012-02-20 14:21:13 +00:00
Patch0: linphone-3.5.1-unusedvar.patch
2012-03-01 16:53:31 +00:00
# commit d1d6ab83af4152f9fb719d885a2de20bddcfa96a
# Allow building against glib 2.31 and later
Patch1: linphone-3.5.2-glib-2.31.patch
2012-02-20 14:21:13 +00:00
%if ! 0%{?novideo}
BuildRequires: libtheora-devel
BuildRequires: libv4l-devel
BuildRequires: libvpx-devel
%endif
BuildRequires: libosip2-devel >= 3.6.0
BuildRequires: libeXosip2-devel >= 3.6.0
2012-02-20 14:21:13 +00:00
BuildRequires: libsoup-devel
BuildRequires: openssl-devel
BuildRequires: pulseaudio-libs-devel
BuildRequires: readline-devel
BuildRequires: ncurses-devel
BuildRequires: libnotify-devel
2010-03-17 16:50:27 +00:00
BuildRequires: gtk2-devel >= 2.16
BuildRequires: alsa-lib-devel
BuildRequires: speex-devel >= 1.2
2011-12-27 21:44:57 +00:00
BuildRequires: spandsp-devel
2007-05-15 20:43:30 +00:00
BuildRequires: gsm-devel
BuildRequires: desktop-file-utils
2006-08-30 15:49:22 +00:00
BuildRequires: perl(XML::Parser)
2010-03-17 16:50:27 +00:00
BuildRequires: libglade2-devel
2007-04-23 16:36:34 +00:00
BuildRequires: intltool
2012-03-01 16:53:31 +00:00
BuildRequires: doxygen
2007-08-29 05:33:06 +00:00
2012-02-22 18:35:54 +00:00
BuildRequires: ortp-devel >= 1:0.20.0
Requires: ortp%{?_isa} >= 1:0.20.0
2012-02-20 14:24:57 +00:00
%description
2005-03-17 22:53:01 +00:00
Linphone is mostly sip compliant. It works successfully with these
implementations:
* eStara softphone (commercial software for windows)
* Pingtel phones (with DNS enabled and VLAN QOS support disabled).
* Hotsip, a free of charge phone for Windows.
2005-03-17 22:53:01 +00:00
* Vocal, an open source SIP stack from Vovida that includes a SIP proxy
that works with linphone since version 0.7.1.
* Siproxd is a free sip proxy being developed by Thomas Ries because he
2005-03-17 22:53:01 +00:00
would like to have linphone working behind his firewall. Siproxd is
simple to setup and works perfectly with linphone.
* Partysip aims at being a generic and fully functionnal SIP proxy. Visit
the web page for more details on its functionalities.
Linphone may work also with other sip phones, but this has not been tested yet.
%package devel
Summary: Development libraries for linphone
Requires: %{name}%{?_isa} = %{version}-%{release}
Requires: linphone-mediastreamer-devel%{?_isa} = %{version}-%{release}
Requires: glib2-devel%{?_isa}
%description devel
2005-03-24 19:32:18 +00:00
Libraries and headers required to develop software with linphone.
%package mediastreamer
Summary: A media streaming library for telephony applications
%description mediastreamer
Mediastreamer2 is a GPL licensed library to make audio and video
real-time streaming and processing. Written in pure C, it is based
upon the oRTP library.
%package mediastreamer-devel
Summary: Development libraries for mediastreamer2
Requires: linphone-mediastreamer%{?_isa} = %{version}-%{release}
Requires: ortp-devel%{?_isa}
%description mediastreamer-devel
Libraries and headers required to develop software with mediastreamer2.
%prep
2006-11-22 04:50:55 +00:00
%setup0 -q
%patch0 -p1 -b .unusedvar
2012-02-20 14:21:13 +00:00
%patch1 -p1 -b .glib-2.31
2011-12-26 05:47:02 +00:00
# remove bundled oRTP
rm -rf oRTP
2007-04-23 16:36:34 +00:00
# Fix encoding
for f in share/cs/*.1; do
/usr/bin/iconv -f iso-8859-2 -t utf-8 -o $f.new $f
sed -i -e 's/Encoding: ISO-8859-2/Encoding: UTF-8/' $f.new
mv $f.new $f
done
for f in ChangeLog AUTHORS; do
/usr/bin/iconv -f iso-8859-1 -t utf-8 -o $f.new $f
mv $f.new $f
done
%build
2011-12-26 05:09:52 +00:00
%configure --disable-static \
2012-02-20 14:21:13 +00:00
%if 0%{?novideo}
--disable-video \
%endif
--disable-ffmpeg \
--disable-rpath \
--enable-console_ui=yes \
--enable-gtk_ui=yes \
--enable-ipv6 \
--enable-truespeech \
--enable-alsa \
--enable-strict \
--enable-nonstandard-gsm \
--enable-rsvp \
--enable-ssl \
--enable-external-ortp
2008-02-05 14:15:25 +00:00
make %{?_smp_mflags}
%install
make install DESTDIR=$RPM_BUILD_ROOT
2005-03-19 15:57:41 +00:00
%find_lang %{name}
%find_lang mediastreamer
2005-03-24 19:32:18 +00:00
desktop-file-install --vendor=fedora \
--delete-original \
--dir $RPM_BUILD_ROOT%{_datadir}/applications \
--remove-category Application \
2005-03-24 19:32:18 +00:00
--add-category Telephony \
--add-category GTK \
$RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop
2012-03-01 16:53:31 +00:00
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
# move docs to %%doc
mkdir -p doc/linphone doc/mediastreamer
mv $RPM_BUILD_ROOT%{_datadir}/doc/linphone/linphone*/html doc/linphone
mv $RPM_BUILD_ROOT%{_datadir}/doc/mediastreamer/mediastreamer*/html doc/mediastreamer
2005-03-19 15:57:41 +00:00
%post -p /sbin/ldconfig
2005-03-19 15:57:41 +00:00
%postun -p /sbin/ldconfig
%post mediastreamer -p /sbin/ldconfig
%postun mediastreamer -p /sbin/ldconfig
2005-03-19 15:57:41 +00:00
%files -f %{name}.lang
2005-03-24 19:32:18 +00:00
%doc AUTHORS ChangeLog COPYING NEWS README TODO
2012-02-20 14:21:13 +00:00
%{_bindir}/linphone
%{_bindir}/linphonec
%{_bindir}/linphonecsh
%{_libdir}/liblinphone.so.4*
%{_mandir}/man1/*
%lang(cs) %{_mandir}/cs/man1/*
2005-03-24 19:32:18 +00:00
%{_datadir}/applications/*%{name}.desktop
2005-03-19 15:57:41 +00:00
%{_datadir}/gnome/help/linphone
%{_datadir}/pixmaps/linphone
%{_datadir}/sounds/linphone
2010-03-17 16:50:27 +00:00
%{_datadir}/linphone
%files devel
%doc doc/linphone/html
2005-03-24 19:32:18 +00:00
%{_includedir}/linphone
%{_libdir}/liblinphone.so
%{_libdir}/pkgconfig/linphone.pc
%files mediastreamer -f mediastreamer.lang
%doc mediastreamer2/AUTHORS mediastreamer2/ChangeLog mediastreamer2/COPYING
%doc mediastreamer2/NEWS mediastreamer2/README
%{_bindir}/mediastream
%{_libdir}/libmediastreamer.so.1*
%{_datadir}/images
%files mediastreamer-devel
%doc doc/mediastreamer/html
%{_includedir}/mediastreamer2
%{_libdir}/libmediastreamer.so
%{_libdir}/pkgconfig/mediastreamer.pc
%changelog
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.2-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
* Mon Dec 31 2012 Alexey Kurov <nucleo@fedoraproject.org> - 3.5.2-5
- add -mediastreamer and -mediastreamer-devel subpackages
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.2-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2012-03-05 19:36:58 +00:00
* Mon Mar 5 2012 Alexey Kurov <nucleo@fedoraproject.org> - 3.5.2-3
- drop regression patch
2012-03-01 16:53:31 +00:00
* Mon Feb 27 2012 Alexey Kurov <nucleo@fedoraproject.org> - 3.5.2-2
- install docs in -devel
- update glib-2.31 patch
- revert commit causing regression in 3.5.2
2012-02-22 18:35:54 +00:00
* Wed Feb 22 2012 Alexey Kurov <nucleo@fedoraproject.org> - 3.5.2-1
- linphone-3.5.2
2012-02-20 14:21:13 +00:00
* Sun Feb 19 2012 Alexey Kurov <nucleo@fedoraproject.org> - 3.5.1-1
- linphone-3.5.1
- BR: libsoup-devel
2012-02-20 14:24:57 +00:00
- Requires: ortp >= 1:0.18.0
2012-02-20 14:21:13 +00:00
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2011-12-27 21:44:57 +00:00
* Tue Dec 27 2011 Alexey Kurov <nucleo@fedoraproject.org> - 3.5.0-2
- enable spandsp
* Mon Dec 26 2011 Alexey Kurov <nucleo@fedoraproject.org> - 3.5.0-1
- linphone-3.5.0
2011-12-26 05:09:52 +00:00
- add BR: libnotify-devel
- disable spandsp (#691039)
2011-12-06 05:13:33 +00:00
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 3.4.3-2
- Rebuild for new libpng
* Fri Sep 2 2011 Alexey Kurov <nucleo@fedoraproject.org> - 3.4.3-1
- linphone-3.4.3
- BR: openssl-devel libsamplerate-devel gettext
- BR: pulseaudio-libs-devel jack-audio-connection-kit-devel
- drop 3.2.1 patches
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2010-03-17 16:50:27 +00:00
* Wed Mar 17 2010 Jesse Keating <jkeating@redhat.com> - 3.2.1-2
- Apply patches from bug 555510 to update linphone
- Drop the doc/mediastreamer dir from devel package
* Mon Mar 01 2010 Adam Jackson <ajax@redhat.com> 2.1.1-5
- Rebuild for libortp.so.7
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Fri Mar 13 2009 Ralf Corsépius <corsepiu@fedoraproject.org> - 2.1.1-3
- Re-base patches to fix rebuild breakdowns.
- Fix various autotool source file bugs.
- Use pre-built autotool-generated files.
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2008-02-14 20:47:28 +00:00
* Thu Feb 14 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.1.1-1
- Update to 2.1.1
2008-02-05 14:15:25 +00:00
* Fri Feb 1 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 2.1.0-1
- Update to 2.1.0
2007-08-29 05:33:06 +00:00
* Wed Aug 29 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.7.1-4
- Update license tag.
2007-08-29 05:23:07 +00:00
* Wed Aug 29 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.7.1-3
- Update license tag.
2007-05-15 20:43:30 +00:00
* Mon May 14 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.7.1-2
- Add patch for compiling against external GSM library.
2007-04-23 16:36:34 +00:00
* Tue Apr 17 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.7.1-1
- Update to 1.7.1
- Drop linphone-1.0.1-desktop.patch, linphone-1.4.1-libs.patch and
linphone-1.5.1-osipcompat.patch
2007-03-16 16:03:54 +00:00
* Fri Mar 16 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.6.0-4
- Fix up encodings in Czech manpages
* Fri Mar 16 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.6.0-3
- Move autoheader after aclocal, fixes 232592
2007-01-30 01:49:53 +00:00
* Mon Jan 29 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.6.0-2
- Fix buildrequires
2007-01-30 01:39:10 +00:00
* Mon Jan 29 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.6.0-1
- Update to 1.6.0
* Wed Nov 22 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.5.1-2
- Mark translated man pages with lang macro
2006-11-22 04:50:55 +00:00
* Tue Nov 21 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.5.1-1
- Update to 1.5.1
* Thu Oct 26 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.5.0-2
- Don't forget to add new files and remove old ones!
* Thu Oct 26 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.5.0-1
- Update to 1.5.0
- Fix spelling error in description.
- Remove invalid categories on desktop file.
2006-08-30 15:50:47 +00:00
* Wed Aug 30 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.2.0-7
- Bump release so that I can "make tag"
2006-08-30 15:49:22 +00:00
* Wed Aug 30 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.2.0-6
- Add BR for perl(XML::Parser) so that intltool will work.
* Wed Aug 30 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.2.0-5
2006-08-30 14:58:13 +00:00
- Bump release and rebuild.
2006-02-14 05:01:51 +00:00
* Mon Feb 13 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.2.0-2
- Rebuild for Fedora Extras 5
* Wed Feb 8 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.2.0-1
- Added version for speex-devel BR (#179879)
* Tue Jan 24 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.2.0-2
- Fixed selecting entry from address book (#177189)
2006-01-03 12:05:15 +00:00
* Tue Jan 3 2006 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.2.0-1
- Upstream update
2005-12-06 00:36:09 +00:00
* Mon Dec 5 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.1.0-2
- Added version on ortp-devel
2005-12-06 00:17:38 +00:00
* Mon Dec 5 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.1.0-1
- Upstream update
2005-11-30 15:13:33 +00:00
* Wed Nov 30 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.0.1-5
- Remove ortp documentation for -devel
2005-11-30 14:03:17 +00:00
* Wed Nov 30 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.0.1-4
- Split out ortp
* Fri May 27 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.0.1-3
- Fix multiple menu entry and missing icon (#158975)
- Clean up spec file
* Fri May 6 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.0.1-2
2005-05-06 15:42:48 +00:00
- Add disttag to Release
2005-04-08 20:38:17 +00:00
* Fri Apr 8 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.0.1-2
- Remove -Werror from configure for now
- Fix .desktop file to have Terminal=false instead of 0
2005-03-24 19:32:18 +00:00
* Thu Mar 24 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.0.1-1
- Upstream update
- Separated ortp
- Added %%doc
2005-03-24 02:17:47 +00:00
* Wed Mar 23 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.12.2-7
- pkgconfig and -devel fixes
2005-03-23 21:35:47 +00:00
* Wed Mar 23 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.12.2-6
- Fix build on x86_64
2005-03-19 17:52:45 +00:00
* Sat Mar 19 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.12.2-5
- %%
2005-03-19 15:57:41 +00:00
* Sat Mar 19 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.12.2-4
2005-03-19 17:52:45 +00:00
- Used %%find_lang
- Tightened up %%files
2005-03-19 15:57:41 +00:00
- Streamlined spec file
2005-03-17 22:53:01 +00:00
* Thu Mar 17 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.12.2-3
2005-03-19 17:52:45 +00:00
- Broke %%description at 80 columns
2005-03-17 22:53:01 +00:00
2005-03-16 18:54:45 +00:00
* Wed Mar 16 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.12.2-2
- Removed explicit Requires
* Tue Mar 15 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0.12.2-1
- Bump release to 1
- Cleaned up the -docs and -speex patches
* Fri Jan 21 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0:0.12.2-0.iva.1
- Fixed a silly spec error
* Fri Jan 21 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 0:0.12.2-0.iva.0
- Initial RPM release.