Blame SPECS/ekiga.spec

4200e1
Summary:	A Gnome based SIP/H323 teleconferencing application
4200e1
Name:		ekiga
4200e1
Version:	4.0.1
4200e1
Release:	8%{?dist}
4200e1
License:	GPLv2+
4200e1
Group:		Applications/Communications
4200e1
URL:		http://www.ekiga.org/
4200e1
Source0:	ftp://ftp.gnome.org/pub/gnome/sources/ekiga/4.0/%{name}-%{version}.tar.xz
4200e1
4200e1
Patch0: 	translations.patch
4200e1
Patch1: 	ekiga-4.0.1-libresolv.patch
4200e1
4200e1
BuildRequires:	ptlib-devel = 2.10.10
4200e1
BuildRequires:	opal-devel = 3.10.10
4200e1
BuildRequires:	alsa-lib-devel
4200e1
BuildRequires:	avahi-devel
4200e1
BuildRequires:	avahi-glib-devel
4200e1
BuildRequires:	boost-devel
4200e1
BuildRequires:	dbus-glib-devel
4200e1
BuildRequires:	evolution-data-server-devel
4200e1
BuildRequires:	expat-devel
4200e1
BuildRequires:	gtk2-devel
4200e1
BuildRequires:	gnome-icon-theme-devel
4200e1
BuildRequires:	GConf2-devel
4200e1
BuildRequires:	libnotify-devel
4200e1
BuildRequires:	libxml2-devel
4200e1
BuildRequires:	libXv-devel
4200e1
BuildRequires:	openldap-devel
4200e1
BuildRequires:	openssl-devel
4200e1
BuildRequires:	SDL-devel
4200e1
BuildRequires:	speex-devel
4200e1
4200e1
BuildRequires:	autoconf
4200e1
BuildRequires:	desktop-file-utils
4200e1
BuildRequires:	gettext
4200e1
BuildRequires:	gnome-doc-utils
4200e1
BuildRequires:	intltool
4200e1
BuildRequires:	libtool
4200e1
BuildRequires:	pkgconfig
4200e1
BuildRequires:	scrollkeeper
4200e1
4200e1
Requires:	evolution-data-server
4200e1
Requires:	dbus
4200e1
Requires:	GConf2
4200e1
Requires(pre):	GConf2
4200e1
Requires(post):	GConf2
4200e1
Requires(preun):GConf2
4200e1
Requires(post):	scrollkeeper
4200e1
Requires(postun):scrollkeeper
4200e1
4200e1
4200e1
%description
4200e1
Ekiga is a tool to communicate with video and audio over the internet.
4200e1
It uses the standard SIP and H323 protocols.
4200e1
4200e1
%prep
4200e1
%setup -q
4200e1
%patch0 -p2 -b .translations
4200e1
%patch1 -p1 -b .libresolv
4200e1
4200e1
# force regeneration to drop translations
4200e1
rm ekiga.schemas
4200e1
4200e1
%build
4200e1
4200e1
autoreconf -fi
4200e1
4200e1
CXXFLAGS="$RPM_OPT_FLAGS -DLDAP_DEPRECATED=1 -fPIC"
4200e1
%configure --disable-scrollkeeper --with-boost-libdir=%{_libdir}
4200e1
make %{?_smp_mflags}
4200e1
4200e1
%install
4200e1
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
4200e1
make install DESTDIR=%{buildroot}
4200e1
unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
4200e1
4200e1
rm -rf %{buildroot}/var/scrollkeeper
4200e1
4200e1
# Replace identical images in the help by links.
4200e1
# This reduces the RPM size by several megabytes.
4200e1
helpdir=%{buildroot}%{_datadir}/gnome/help/%{name}
4200e1
for f in $helpdir/C/figures/*.png; do
4200e1
  b="$(basename $f)"
4200e1
  for d in $helpdir/*; do
4200e1
    if [ -d "$d" -a "$d" != "$helpdir/C" ]; then
4200e1
      g="$d/figures/$b"
4200e1
      if [ -f "$g" ]; then
4200e1
        if cmp -s $f $g; then
4200e1
          rm "$g"; ln -s "../../C/figures/$b" "$g"
4200e1
        fi
4200e1
      fi
4200e1
    fi
4200e1
  done
4200e1
done
4200e1
4200e1
desktop-file-install --vendor gnome \
4200e1
  --dir=%{buildroot}%{_datadir}/applications \
4200e1
  --delete-original \
4200e1
  %{buildroot}%{_datadir}/applications/ekiga.desktop
4200e1
4200e1
%find_lang ekiga --with-gnome
4200e1
4200e1
#Remove libtool archives.
4200e1
find %{buildroot} -name '*.la' -exec rm -f {} ';'
4200e1
4200e1
%pre
4200e1
if [ "$1" -gt 1 ] ; then
4200e1
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
4200e1
gconftool-2 --makefile-uninstall-rule \
4200e1
%{_sysconfdir}/gconf/schemas/ekiga.schemas > /dev/null || :
4200e1
fi
4200e1
4200e1
%post
4200e1
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
4200e1
gconftool-2 --makefile-install-rule \
4200e1
%{_sysconfdir}/gconf/schemas/ekiga.schemas > /dev/null || :
4200e1
4200e1
scrollkeeper-update -q -o %{_datadir}/omf/%{name} || :
4200e1
4200e1
touch --no-create %{_datadir}/icons/hicolor
4200e1
if [ -x %{_bindir}/gtk-update-icon-cache ] ; then
4200e1
  %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
4200e1
fi
4200e1
4200e1
%preun
4200e1
if [ "$1" -eq 0 ] ; then
4200e1
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
4200e1
gconftool-2 --makefile-uninstall-rule \
4200e1
%{_sysconfdir}/gconf/schemas/ekiga.schemas > /dev/null || :
4200e1
fi
4200e1
4200e1
touch --no-create %{_datadir}/icons/hicolor
4200e1
if [ -x %{_bindir}/gtk-update-icon-cache ] ; then
4200e1
  %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
4200e1
fi
4200e1
4200e1
%postun
4200e1
scrollkeeper-update -q || :
4200e1
4200e1
%files -f ekiga.lang
4200e1
%defattr(-,root,root)
4200e1
%doc COPYING AUTHORS FAQ NEWS
4200e1
%{_bindir}/ekiga
4200e1
%{_bindir}/ekiga-helper
4200e1
%{_bindir}/ekiga-config-tool
4200e1
%{_libdir}/ekiga
4200e1
%{_datadir}/applications/gnome-ekiga.desktop
4200e1
%{_datadir}/pixmaps/ekiga
4200e1
%{_datadir}/man/*/*
4200e1
%{_datadir}/sounds/ekiga
4200e1
%{_datadir}/dbus-1/services/org.ekiga.*
4200e1
%{_datadir}/icons/hicolor/*/apps/ekiga.png
4200e1
%{_sysconfdir}/gconf/schemas/ekiga.schemas
4200e1
4200e1
%changelog
4200e1
* Wed Jun 13 2018 Milan Crha <mcrha@redhat.com> - 4.0.1-8
4200e1
- Rebuild against newer evolution-data-server
4200e1
4200e1
* Thu Apr 20 2017 Benjamin Otte <otte@redhat.com> - 4.0.1-7
4200e1
- Rebuild against newer evolution-data-server
4200e1
4200e1
* Thu May 14 2015 Milan Crha <mcrha@redhat.com> - 4.0.1-5
4200e1
- Rebuild against newer evolution-data-server
4200e1
4200e1
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 4.0.1-4
4200e1
- Mass rebuild 2014-01-24
4200e1
4200e1
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 4.0.1-3
4200e1
- Mass rebuild 2013-12-27
4200e1
4200e1
* Fri Dec 13 2013 Matthias Clasen <mclasen@redhat.com> - 4.0.1-2
4200e1
- Update translations
4200e1
- Resolves: #1030323
4200e1
4200e1
* Tue Apr 30 2013 Daniel Mach <dmach@redhat.com> - 4.0.1-1.2
4200e1
- Rebuild for cyrus-sasl
4200e1
4200e1
* Wed Feb 20 2013 Peter Robinson <pbrobinson@fedoraproject.org> 4.0.1-1
4200e1
- Ekiga 4.0.1 stable release - Changelog
4200e1
  http://ftp.gnome.org/pub/gnome/sources/ekiga/4.0/ekiga-4.0.1.news
4200e1
4200e1
* Sat Feb 09 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.0.0-3
4200e1
- Rebuild for Boost-1.53.0
4200e1
4200e1
* Tue Dec 25 2012 Bruno Wolff III <bruno@wolff.to> 4.0.0-2
4200e1
- Rebuild for libcamel soname bump
4200e1
4200e1
* Mon Nov 26 2012 Peter Robinson <pbrobinson@fedoraproject.org> 4.0.0-1
4200e1
- Ekiga 4.0.0 stable release - Changelog
4200e1
  http://ftp.gnome.org/pub/gnome/sources/ekiga/4.0/ekiga-4.0.0.news
4200e1
4200e1
* Tue Nov 20 2012 Milan Crha <mcrha@redhat.com> - 3.9.90-3
4200e1
- Rebuild against newer evolution-data-server
4200e1
4200e1
* Thu Oct 25 2012 Milan Crha <mcrha@redhat.com> - 3.9.90-2
4200e1
- Rebuild against newer evolution-data-server
4200e1
4200e1
* Sat Aug 25 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 3.9.90-1
4200e1
- Ekiga 3.9.90 devel - Changelog
4200e1
  ftp://ftp.gnome.org/pub/gnome/sources/ekiga/3.9/ekiga-3.9.90.news
4200e1
4200e1
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-8
4200e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
4200e1
4200e1
* Sat Mar 24 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 3.3.2-7
4200e1
- Fix build with gcc 4.7
4200e1
4200e1
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-6
4200e1
- Rebuilt for c++ ABI breakage
4200e1
4200e1
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-5
4200e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
4200e1
4200e1
* Mon Nov 21 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 3.3.2-4
4200e1
- Rebuild for boost 1.48
4200e1
4200e1
* Sun Oct 30 2011 Bruno Wolff III <bruno@wolff.to> - 3.3.2-3
4200e1
- Rebuild against newer evolution-data-server
4200e1
4200e1
* Mon Aug 29 2011 Milan Crha <mcrha@redhat.com> - 3.3.2-2
4200e1
- Rebuild against newer evolution-data-server
4200e1
4200e1
* Tue Aug 23 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 3.3.2-1
4200e1
- Ekiga 3.3.2 devel - Changelog
4200e1
  ftp://ftp.gnome.org/pub/gnome/sources/ekiga/3.3/ekiga-3.3.2.news
4200e1
4200e1
* Tue Aug 16 2011 Milan Crha <mcrha@redhat.com> - 3.3.1-3
4200e1
- Rebuild against newer evolution-data-server
4200e1
4200e1
* Sun Jul 24 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 3.3.1-2
4200e1
- Rebuild for new boost and evolution-data-server
4200e1
4200e1
* Sat Jul 16 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 3.3.1-1
4200e1
- Ekiga 3.3.1 devel - Changelog
4200e1
  ftp://ftp.gnome.org/pub/gnome/sources/ekiga/3.3/ekiga-3.3.1.news
4200e1
4200e1
* Fri Jun 17 2011 Milan Crha <mcrha@redhat.com> - 3.3.0-10
4200e1
- Rebuild against newer evolution-data-server
4200e1
4200e1
* Fri May 20 2011 Kalev Lember <kalev@smartlink.ee> - 3.3.0-9
4200e1
- Rebuilt for libcamel soname bump
4200e1
4200e1
* Tue Apr 12 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 3.3.0-8
4200e1
- rebuild again for new boost
4200e1
4200e1
* Tue Mar 15 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 3.3.0-7
4200e1
- rebuild for new boost
4200e1
4200e1
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.0-6
4200e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
4200e1
4200e1
* Mon Feb 07 2011 Thomas Spura <tomspur@fedoraproject.org> - 3.3.0-5
4200e1
- rebuild for new boost
4200e1
4200e1
* Tue Feb 01 2011 Milan Crha <mcrha@redhat.com> - 3.3.0-4
4200e1
- Rebuild against newer evolution-data-server
4200e1
4200e1
* Wed Jan 12 2011 Milan Crha <mcrha@redhat.com> - 3.3.0-3
4200e1
- Rebuild against newer evolution-data-server
4200e1
4200e1
* Fri Dec 24 2010 Dan Horák <dan[at]danny.cz> - 3.3.0-2
4200e1
- fix build on non-x86 64-bit architectures (ax_boost_base.m4 is wrong)
4200e1
4200e1
* Thu Dec 23 2010 Peter Robinson <pbrobinson@fedoraproject.org> - 3.3.0-1
4200e1
- Ekiga 3.3.0 devel - Changelog
4200e1
  http://mail.gnome.org/archives/ekiga-devel-list/2010-December/msg00036.html
4200e1
4200e1
* Fri Nov  5 2010 Matthias Clasen <mclasen@redhat.com> - 3.2.7-5
4200e1
- Rebuild against libnotify 0.7.0
4200e1
4200e1
* Mon Jul 26 2010 Caolán McNamara <caolanm@redhat.com> - 3.2.7-4
4200e1
- add gtk flags to notify plugin to rebuild
4200e1
4200e1
* Tue Jul 20 2010 Peter Robinson <pbrobinson@fedoraproject.org> - 3.2.7-3
4200e1
- rebuild against new evolution-data-server
4200e1
4200e1
* Thu Jul 15 2010 Matthias Clasen <mclasen@redhat.com> - 3.2.7-2
4200e1
- rebuild against new evolution-data-server
4200e1
4200e1
* Mon May 31 2010 Peter Robinson <pbrobinson@fedoraproject.org> - 3.2.7-1
4200e1
- Ekiga 3.2.7 stable - Changelog
4200e1
  ftp://ftp.gnome.org/pub/gnome/sources/ekiga/3.2/ekiga-3.2.7.news
4200e1
4200e1
* Wed May 26 2010 Peter Robinson <pbrobinson@fedoraproject.org> 3.2.6-4
4200e1
- Bump build for new evolution
4200e1
4200e1
* Tue May  4 2010 Peter Robinson <pbrobinson@fedoraproject.org> - 3.2.6-3
4200e1
- Rebuild for new evolution
4200e1
4200e1
* Wed Mar  3 2010 Peter Robinson <pbrobinson@fedoraproject.org> - 3.2.6-2
4200e1
- Add patch to fix DSO linking. Bug 564828
4200e1
4200e1
* Tue Sep 22 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.2.6-1
4200e1
- Ekiga 3.2.6 stable - Changelog
4200e1
  ftp://ftp.gnome.org/pub/gnome/sources/ekiga/3.2/ekiga-3.2.6.news
4200e1
4200e1
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 3.2.5-4
4200e1
- rebuilt with new openssl
4200e1
4200e1
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.5-3
4200e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
4200e1
4200e1
* Thu Jul  9 2009 Matthias Clasen <mclasen@redhat.com> - 3.2.5-2
4200e1
- Shrink GConf schemas
4200e1
 
4200e1
* Mon Jul  6 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.2.5-1
4200e1
- Ekiga 3.2.5 stable - Changelog
4200e1
  ftp://ftp.gnome.org/pub/gnome/sources/ekiga/3.2/ekiga-3.2.5.news
4200e1
4200e1
* Wed May 20 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.2.4-1
4200e1
- Ekiga 3.2.4 stable - Changelog
4200e1
  http://mail.gnome.org/archives/ekiga-devel-list/2009-May/msg00062.html
4200e1
  http://mail.gnome.org/archives/ekiga-devel-list/2009-May/msg00064.html
4200e1
4200e1
* Tue May 19 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.2.1-1
4200e1
- Ekiga 3.2.1 stable - Changelog
4200e1
  http://mail.gnome.org/archives/ekiga-devel-list/2009-May/msg00054.html
4200e1
4200e1
* Mon Apr 27 2009 Matthias Clasen <mclasen@redhat.com> - 3.2.0-3
4200e1
- Rebuild against newer GConf/intltool
4200e1
4200e1
* Mon Apr 20 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.2.0-2
4200e1
- Add a couple of upstream patches from 3.2.1
4200e1
4200e1
* Tue Mar 17 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.2.0-1
4200e1
- Ekiga 3.2.0 stable
4200e1
4200e1
* Fri Mar  6 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1.2-4
4200e1
- Remove CELT until the bitstream is stable and can hence intercommunicate between versions
4200e1
4200e1
* Tue Mar  3 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1.2-3
4200e1
- Remove autoconf bits
4200e1
4200e1
* Tue Mar  3 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1.2-2
4200e1
- Disable xcap for the moment so ekiga builds
4200e1
4200e1
* Tue Mar  3 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1.2-1
4200e1
- Upgrade to the 3.1.2 beta release, enable celt codec, reinstate 
4200e1
  proper desktop file now its fixed
4200e1
4200e1
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.0-11
4200e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
4200e1
4200e1
* Fri Jan 16 2009 Tomas Mraz <tmraz@redhat.com> - 3.1.0-10
4200e1
- rebuild with new openssl
4200e1
- add libtoolize call to replace libtool with current version
4200e1
4200e1
* Thu Jan 15 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1.0-9
4200e1
- Add other buildreq for Makefile regen
4200e1
4200e1
* Thu Jan 15 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1.0-8
4200e1
- Regen Makefile.in using autoreconf due to patch
4200e1
4200e1
* Wed Jan 14 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1.0-7
4200e1
- Another fix
4200e1
4200e1
* Tue Jan 13 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1.0-6
4200e1
- And SDL too
4200e1
4200e1
* Tue Jan 13 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1.0-5
4200e1
- Add expat-devel, why not everything else wants it
4200e1
4200e1
* Tue Jan 13 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1.0-4
4200e1
- Disable gstreamer support until there's a new gst-plugins-base
4200e1
4200e1
* Tue Jan 13 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1.0-3
4200e1
- Proper fix from upstream for desktop file
4200e1
4200e1
* Wed Jan  7 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1.0-2
4200e1
- Fix issues with the desktop file
4200e1
4200e1
* Mon Jan  5 2009 Peter Robinson <pbrobinson@fedoraproject.org> - 3.1.0-1
4200e1
- Upgrade to the 3.1.0 devel release, enable gstreamer and xcap, remove libgnome
4200e1
4200e1
* Mon Nov 13 2008 Peter Robinson <pbrobinson@fedoraproject.org> - 3.0.1-4
4200e1
- Fix spec file error
4200e1
4200e1
* Mon Nov 13 2008 Peter Robinson <pbrobinson@fedoraproject.org> - 3.0.1-3
4200e1
- Patch to fix libnotify's breakage of its api
4200e1
4200e1
* Mon Oct 20 2008 Peter Robinson <pbrobinson@fedoraproject.org> - 3.0.1-2
4200e1
- Fix dependency issue
4200e1
4200e1
* Mon Oct 20 2008 Peter Robinson <pbrobinson@fedoraproject.org> - 3.0.1-1
4200e1
- Update to 3.0.1
4200e1
4200e1
* Thu Oct 9 2008 Peter Robinson <pbrobinson@fedoraproject.org> - 3.0.0-5
4200e1
- Remove gnomemeeting obsolete, package review updates
4200e1
4200e1
* Thu Oct 9 2008 Matthias Clasen  <mclasen@redhat.com> - 3.0.0-4
4200e1
- Save some space
4200e1
4200e1
* Thu Oct 2 2008 Peter Robinson <pbrobinson@fedoraproject.org> - 3.0.0-3
4200e1
- require dbus
4200e1
4200e1
* Tue Sep 23 2008 Peter Robinson <pbrobinson@fedoraproject.org> - 3.0.0-2
4200e1
- add libnotify-devel as a build dep
4200e1
4200e1
* Tue Sep 23 2008 Peter Robinson <pbrobinson@fedoraproject.org> - 3.0.0-1
4200e1
- Ekiga 3 final release
4200e1
4200e1
* Sun Sep 14 2008 Peter Robinson <pbrobinson@fedoraproject.org> - 2.9.90-3
4200e1
- more rawhide build fixes
4200e1
4200e1
* Sun Sep 14 2008 Peter Robinson <pbrobinson@fedoraproject.org> - 2.9.90-2
4200e1
- rawhide build fixes
4200e1
4200e1
* Thu Sep 11 2008 Peter Robinson <pbrobinson@fedoraproject.org> - 2.9.90-1
4200e1
- First beta of ekiga 3
4200e1
4200e1
* Mon May 12 2008 Paul W. Frields <stickster@gmail.com> - 2.0.12-2
4200e1
- Rebuild against new opal (#441202)
4200e1
4200e1
* Thu Mar 13 2008 Daniel Veillard <veillard@redhat.com> - 2.0.12-1.fc9
4200e1
- Upgrade to ekiga-2.0.12
4200e1
4200e1
* Thu Feb 28 2008 Daniel Veillard <veillard@redhat.com> - 2.0.11-4
4200e1
- rebuild after applying some fo the cleanups of #160727
4200e1
4200e1
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.0.11-3
4200e1
- Autorebuild for GCC 4.3
4200e1
4200e1
* Thu Dec 13 2007 Matěj Cepl <mcepl@redhat.com> 2.0.11-2
4200e1
- compile with the D-Bus support
4200e1
- Making rpmlint silent.
4200e1
4200e1
* Tue Sep 18 2007 Daniel Veillard <veillard@redhat.com> - 2.0.11-1
4200e1
- Upgrade to ekiga-2.0.11
4200e1
4200e1
* Sun Apr 15 2007 Daniel Veillard <veillard@redhat.com> - 2.0.9-1
4200e1
- Upgrade to ekiga-2.0.9
4200e1
4200e1
* Mon Mar 12 2007 Daniel Veillard <veillard@redhat.com> - 2.0.7-1
4200e1
- Upgrade to ekiga-2.0.7
4200e1
4200e1
* Mon Feb 19 2007 Jeremy Katz <katzj@redhat.com> - 2.0.5-2
4200e1
- rebuild 
4200e1
4200e1
* Wed Feb 14 2007 Daniel Veillard <veillard@redhat.com> - 2.0.5-1
4200e1
- Upgrade to ekiga-2.0.5
4200e1
4200e1
* Mon Jan 22 2007 Daniel Veillard <veillard@redhat.com> - 2.0.4-1
4200e1
- Upgrade to ekiga-2.0.4
4200e1
4200e1
* Thu Nov  2 2006 Daniel Veillard <veillard@redhat.com> - 2.0.3-3
4200e1
- Resolves: rhbz#201535
4200e1
- fixes build-requires for opal-devel and pwlib-devel
4200e1
4200e1
* Sat Oct 28 2006 Matthias Clasen <mclasen@redhat.com> - 2.0.3-2
4200e1
- Rebuild against evolution-data-server 1.9
4200e1
4200e1
* Sat Oct 21 2006 Matthias Clasen <mclasen@redhat.com> - 2.0.3-1
4200e1
- Update to 2.0.3
4200e1
4200e1
* Sat Sep 30 2006 Matthias Clasen <mclasen@redhat.com> - 2.0.2-7
4200e1
- Make the status icon work in transparent panels
4200e1
4200e1
* Thu Aug 31 2006 Matthias Clasen <mclasen@redhat.com> - 2.0.2-6
4200e1
- Fix translator credits (197871)
4200e1
4200e1
* Mon Aug  7 2006 Matthew Barnes <mbarnes@redhat.com> - 2.0.2-5
4200e1
- Rebuild against evolution-data-server-1.7.91
4200e1
4200e1
* Sat Aug  5 2006 Caolán McNamara <caolanm@redhat.com> - 2.0.2-4
4200e1
- rebuild against new e-d-s
4200e1
4200e1
* Tue Aug  1 2006 Daniel Veillard <veillard@redhat.com> - 2.0.2-3
4200e1
- rebuilt for #200960
4200e1
4200e1
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.0.2-1.1
4200e1
- rebuild
4200e1
4200e1
* Wed May 31 2006 Daniel Veillard <veillard@redhat.com> - 2.0.2-1
4200e1
- new release of ekiga 2.0.2
4200e1
- activating Zeroconf support though avahi
4200e1
4200e1
* Mon May 22 2006 Jesse Keating <jkeating@redhat.com> - 2.0.1-3
4200e1
- Fix BuildRequires and Requires(post), Requires(postun)
4200e1
4200e1
* Wed Mar 15 2006 Daniel Veillard <veillard@redhat.com> - 2.0.1-2
4200e1
- run 'ekiga-config-tool --install-schemas' in %%post, c.f. #178929
4200e1
4200e1
* Tue Mar 14 2006 Daniel Veillard <veillard@redhat.com> - 2.0.1-1
4200e1
- last minute bug rerelease 2.0.1
4200e1
4200e1
* Mon Mar 13 2006 Daniel Veillard <veillard@redhat.com> - 2.0.0-1
4200e1
- final release of 2.0.0
4200e1
4200e1
* Mon Feb 20 2006 Karsten Hopp <karsten@redhat.de> 1.99.1-2
4200e1
- Buildrequires: gnome-doc-utils
4200e1
4200e1
* Mon Feb 13 2006 Daniel Veillard <veillard@redhat.com> - 1.99.1-1
4200e1
- new beta release issued
4200e1
4200e1
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.99.0-3.2
4200e1
- bump again for double-long bug on ppc(64)
4200e1
4200e1
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.99.0-3.1
4200e1
- rebuilt for new gcc4.1 snapshot and glibc changes
4200e1
4200e1
* Sat Jan 28 2006 Daniel Veillard <veillard@redhat.com> - 1.99.0-3
4200e1
- Rebuilt following a libedataserver revision
4200e1
4200e1
* Fri Jan 27 2006 Matthias Clasen <mclasen@redhat.com> - 1.99.0-2
4200e1
- Use the upstream .desktop file
4200e1
4200e1
* Tue Jan 24 2006 Daniel Veillard <veillard@redhat.com> - 1.99.0-1
4200e1
- initial version based on the 1.99.0 beta and gnomemeeting spec file.