Blame SPECS/phonon.spec

504c92
504c92
# enabling for the build sanity, the results
504c92
# aren't all that useful, yet.
504c92
%define phonon_build_tests -DPHONON_BUILD_TESTS:BOOL=ON
504c92
504c92
## split -experimental subpkgs
504c92
#define experimental 1
504c92
504c92
Summary: Multimedia framework api
504c92
Name:    phonon
504c92
Version: 4.6.0
a65101
Release: 10%{?dist}
504c92
Group:   System Environment/Libraries
504c92
License: LGPLv2+
504c92
URL:     http://phonon.kde.org/
504c92
%if 0%{?snap}
504c92
Source0: phonon-%{version}-%{snap}.tar.bz2
504c92
%else
504c92
Source0: ftp://ftp.kde.org/pub/kde/stable/phonon/%{version}/src/phonon-%{version}.tar.xz
504c92
%endif
504c92
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
504c92
504c92
## upstreamable patches
504c92
# phonon_backend ... could not be loaded
504c92
# http://bugzilla.redhat.com/760039
a65101
Patch50: phonon-4.5.57-plugindir.patch
504c92
Patch51: phonon-4.6.0-syntax.patch
504c92
# https://git.reviewboard.kde.org/r/103423
504c92
Patch52: phonon-4.6.0-rpath.patch
504c92
504c92
## Upstream patches
504c92
504c92
BuildRequires: automoc4 >= 0.9.86
504c92
BuildRequires: cmake >= 2.6.0
504c92
BuildRequires: kde-filesystem
504c92
BuildRequires: pkgconfig
504c92
BuildRequires: pkgconfig(glib-2.0)
504c92
BuildRequires: pkgconfig(libpulse-mainloop-glib) > 0.9.15
504c92
BuildRequires: pkgconfig(libxml-2.0)
504c92
BuildRequires: pkgconfig(QtGui) >= 4.7.2
504c92
%if 0%{?fedora}
504c92
BuildRequires: pkgconfig(QZeitgeist)
504c92
%endif
504c92
BuildRequires: pkgconfig(xcb)
504c92
504c92
%global pulseaudio_version %(pkg-config --modversion libpulse 2>/dev/null || echo 0.9.15)
504c92
504c92
Requires: kde-filesystem
504c92
## Beware bootstrapping, have -Requires/+Requires this for step 0, then build at least one backend
504c92
Requires: phonon-backend%{?_isa} => 4.4
504c92
#Provides: phonon-backend%{?_isa} = 4.4
504c92
Requires: pulseaudio-libs%{?_isa} >= %{pulseaudio_version}
504c92
Requires: qt4%{?_isa} >= %{_qt4_version}
504c92
504c92
%if ! 0%{?experimental}
504c92
#Obsoletes: phonon-experimental < %{version}-%{release}
504c92
Provides:  phonon-experimental = %{version}-%{release}
504c92
%endif
504c92
504c92
%description
504c92
%{summary}.
504c92
504c92
%package devel
504c92
Summary: Developer files for %{name}
504c92
Group:   Development/Libraries
504c92
Requires: %{name}%{?_isa} = %{version}-%{release}
504c92
Requires: qt4-devel
504c92
Requires: pkgconfig
504c92
%if ! 0%{?experimental}
504c92
#Obsoletes: phonon-experimental-devel < %{version}-%{release}
504c92
Provides:  phonon-experimental-devel = %{version}-%{release}
504c92
%endif
504c92
%description devel
504c92
%{summary}.
504c92
504c92
%if 0%{?experimental}
504c92
%package experimental
504c92
Summary: Experimental interfaces for %{name}
504c92
Group:   System Environment/Libraries
504c92
Requires: %{name}%{?_isa} = %{version}-%{release}
a65101
%description experimental
504c92
%{summary}.
504c92
504c92
%package experimental-devel
504c92
Summary: Developer files for %{name}-experimental
504c92
Group:   System Environment/Libraries
504c92
Requires: %{name}-experimental%{?_isa} = %{version}-%{release}
504c92
Requires: %{name}-devel%{?_isa} = %{version}-%{release}
504c92
%description experimental-devel
504c92
%{summary}.
504c92
Includes experimental and unstable apis.
504c92
%endif
504c92
504c92
504c92
%prep
a65101
%setup -q
504c92
504c92
%patch50 -p1 -b .plugindir
504c92
%patch51 -p1 -b .syntax
504c92
%patch52 -p1 -b .rpath
504c92
504c92
%build
504c92
mkdir -p %{_target_platform}
504c92
pushd %{_target_platform}
504c92
%{cmake} \
504c92
  %{?phonon_build_tests} \
504c92
  -DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT:BOOL=ON \
504c92
  ..
504c92
popd
504c92
504c92
make %{?_smp_mflags} -C %{_target_platform}
504c92
504c92
504c92
%install
504c92
rm -rf %{buildroot}
504c92
504c92
make install/fast DESTDIR=%{buildroot} -C %{_target_platform}
504c92
504c92
# symlink for qt/phonon compatibility
504c92
ln -s ../KDE/Phonon %{buildroot}%{_includedir}/phonon/Phonon
504c92
504c92
# own these dirs
504c92
mkdir -p %{buildroot}%{_kde4_libdir}/kde4/plugins/phonon_backend/
504c92
mkdir -p %{buildroot}%{_kde4_datadir}/kde4/services/phononbackends/
504c92
504c92
504c92
%check
504c92
export PKG_CONFIG_PATH=%{buildroot}%{_datadir}/pkgconfig:%{buildroot}%{_libdir}/pkgconfig
504c92
test "$(pkg-config --modversion phonon)" = "%{version}"
504c92
%if 0%{?phonon_build_tests:1}
504c92
# many of these fail currently (4/10)
504c92
make test -C %{_target_platform} ||:
504c92
%endif
504c92
504c92
504c92
%clean
504c92
rm -rf %{buildroot}
504c92
a65101
%pretrans devel -p <lua>
a65101
path = "/usr/include/phonon/Phonon"
a65101
st = posix.stat(path)
a65101
if st and st.type == "directory" then
a65101
  status = os.rename(path, path .. ".rpmmoved")
a65101
  if not status then
a65101
    suffix = 0
a65101
    while not status do
a65101
      suffix = suffix + 1
a65101
      status = os.rename(path .. ".rpmmoved", path .. ".rpmmoved." .. suffix)
a65101
    end
a65101
    os.rename(path, path .. ".rpmmoved")
a65101
  end
a65101
end
504c92
504c92
%post -p /sbin/ldconfig
504c92
%postun -p /sbin/ldconfig
504c92
504c92
%files
504c92
%defattr(-,root,root,-)
504c92
%doc COPYING.LIB
504c92
%{_libdir}/libphonon.so.4*
504c92
%{_datadir}/dbus-1/interfaces/org.kde.Phonon.AudioOutput.xml
504c92
%{_qt4_plugindir}/designer/libphononwidgets.so
504c92
%dir %{_datadir}/phonon/
504c92
%dir %{_kde4_libdir}/kde4/plugins/phonon_backend/
504c92
%dir %{_kde4_datadir}/kde4/services/phononbackends/
504c92
504c92
%if 0%{?experimental}
504c92
%post experimental -p /sbin/ldconfig
504c92
%postun experimental -p /sbin/ldconfig
504c92
504c92
%files experimental
504c92
%defattr(-,root,root,-)
504c92
%endif
504c92
%{_libdir}/libphononexperimental.so.4*
504c92
504c92
%files devel
504c92
%defattr(-,root,root,-)
504c92
%{_datadir}/phonon/buildsystem/
504c92
%dir %{_libdir}/cmake/
504c92
%{_libdir}/cmake/phonon/
504c92
%dir %{_includedir}/KDE
504c92
%{_includedir}/KDE/Phonon/
504c92
%{_includedir}/phonon/
504c92
%{_libdir}/pkgconfig/phonon.pc
504c92
%{_libdir}/libphonon.so
504c92
%{_qt4_datadir}/mkspecs/modules/qt_phonon.pri
504c92
504c92
%if 0%{?experimental}
504c92
%exclude %{_includedir}/KDE/Phonon/Experimental/
504c92
%exclude %{_includedir}/phonon/experimental/
504c92
%files experimental-devel
504c92
%defattr(-,root,root,-)
504c92
%endif
504c92
%{_includedir}/KDE/Phonon/Experimental/
504c92
%{_includedir}/phonon/experimental/
504c92
%{_libdir}/libphononexperimental.so
504c92
504c92
504c92
%changelog
a65101
* Tue Aug 04 2015 Jan Grulich <jgrulich@redhat.com> - 4.6.0-10
a65101
- Fix upgrade for phonon-devel
a65101
  Resolves: bz#1091337
a65101
ff879a
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 4.6.0-9
ff879a
- Mass rebuild 2014-01-24
ff879a
ff879a
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 4.6.0-8
ff879a
- Mass rebuild 2013-12-27
ff879a
504c92
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.6.0-7
504c92
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
504c92
504c92
* Tue Jul 31 2012 Than Ngo <than@redhat.com> - 4.6.0-6
504c92
- add rhel/fedora condition
504c92
504c92
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.6.0-5
504c92
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
504c92
504c92
* Sun May 20 2012 Rex Dieter <rdieter@fedoraproject.org> 4.6.0-4
504c92
- refresh rpath patch
504c92
504c92
* Wed Mar 28 2012 Than Ngo <than@redhat.com> - 4.6.0-3
504c92
- fix syntax in *.pri file
504c92
504c92
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.6.0-2
504c92
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
504c92
504c92
* Tue Dec 20 2011 Rex Dieter <rdieter@fedoraproject.org> 4.6.0-1
504c92
- 4.6.0
504c92
504c92
* Wed Dec 07 2011 Rex Dieter <rdieter@fedoraproject.org> 4.5.57-4.20111031
504c92
- fix plugindir usage (#760039)
504c92
504c92
* Wed Nov 02 2011 Rex Dieter <rdieter@fedoraproject.org> 4.5.57-3.20111031
504c92
- fix release
504c92
504c92
* Mon Oct 31 2011 Rex Dieter <rdieter@fedoraproject.org> 4.5.57-1.20111031
504c92
- 20111031 snapshot
504c92
504c92
* Mon Oct 31 2011 Rex Dieter <rdieter@fedoraproject.org> 4.5.57-2.20110914
504c92
- rebuild (qzeitgeist)
504c92
504c92
* Fri Sep 23 2011 Rex Dieter <rdieter@fedoraproject.org> 4.5.57-1.20110914
504c92
- 4.5.57 20110914 snapshot
504c92
- pkgconfig-style deps
504c92
504c92
* Tue May 24 2011 Rex Dieter <rdieter@fedoraproject.org> 4.5.0-3
504c92
- BR: libqzeitgeist-devel
504c92
504c92
* Fri Apr 08 2011 Rex Dieter <rdieter@fedoraproject.org> 4.5.0-2
504c92
- avoid Conflicts with judicious (Build)Requires: qt4(-devel) instead
504c92
504c92
* Fri Mar 25 2011 Rex Dieter <rdieter@fedoraproject.org> 4.5.0-1
504c92
- phonon-4.5.0
504c92
- qt-designer-plugin-phonon moved here (from qt)
504c92
504c92
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.4.4-3
504c92
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
504c92
504c92
* Fri Jan 21 2011 Rex Dieter <rdieter@fedoraproject.org> 4.4.4-2
504c92
- re-instate allow-stop-empty-source match from mdv
504c92
504c92
* Fri Jan 21 2011 Rex Dieter <rdieter@fedoraproject.org> 4.4.4-1
504c92
- phonon-4.4.4
504c92
504c92
* Wed Jan 05 2011 Rex Dieter <rdieter@fedoraproject.org> - 4.4.4-0.1.20110104
504c92
- Requires: phonon-backend
504c92
504c92
* Wed Jan 05 2011 Rex Dieter <rdieter@fedoraproject.org> - 4.4.4-0.0.20110104
504c92
- phonon-4.4.4 snapshot (sans backends)
504c92
- bootstrap without Requires: phonon-backend
504c92
504c92
* Tue Nov 30 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.4.3-2
504c92
- recognize audio/flac in gstreamer backend (kde#257488)
504c92
504c92
* Wed Nov 24 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.4.3-1
504c92
- phonon-4.4.3
504c92
504c92
* Mon Nov 22 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.4.3-0.4.20101122
504c92
- phonon-4.4.3 20101122 snapshot
504c92
504c92
* Fri Nov 12 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.4.3-0.3.20101112
504c92
- phonon-4.4.3 20101112 snapshot
504c92
504c92
* Tue Oct 19 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.4.3-0.2.20100909
504c92
- Requires: kde-filesystem (#644571)
504c92
- own %%{_kde4_libdir}/kde4 (
504c92
504c92
* Thu Sep 09 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.4.3-0.1.20100909
504c92
- phonon-4.4.3 20100909 snapshot
504c92
504c92
* Tue Jun 08 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.4.2-1
504c92
- phonon-4.4.2
504c92
504c92
* Sat Apr 24 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.4.1-2
504c92
- phonon-backend-xine-4.4.1 (with pulseaudio) = no audio (kde#235193)
504c92
504c92
* Thu Apr 22 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.4.1-1
504c92
- phonon-4.4.1
504c92
504c92
* Thu Apr 01 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.4.0-3
504c92
- add minimal pulseaudio runtime dep
504c92
504c92
* Wed Mar 17 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.4.0-2
504c92
- pa glib/qt eventloop patch (kde#228324)
504c92
504c92
* Tue Mar 16 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.4.0-1
504c92
- phonon-4.4.0 final
504c92
504c92
* Fri Mar 12 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.4.0-0.3
504c92
- phonon-4.3.80-pulse-devicemove-rejig.patch (from mdv)
504c92
504c92
* Wed Feb 24 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.4.0-0.2
504c92
- preliminary phonon-4.4.0 tarball
504c92
504c92
* Fri Jan 22 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.3.80-6
504c92
- sync w/mdv patches
504c92
504c92
* Fri Jan 22 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.3.80-5.2
a65101
- F11: patch/modularize pa device-manager bits
504c92
504c92
* Fri Jan 22 2010 Kevin Kofler <Kevin@tigcc.ticalc.org> - 4.3.80-5.1
504c92
- F11: port the old PA device priorities patch as we don't have PA integration
504c92
504c92
* Thu Jan 21 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.3.80-5
504c92
- no sound with phonon-xine/pulseaudio (kde#223662, rh#553945)
504c92
504c92
* Thu Jan 21 2010 Rex Dieter <rdieter@fedoraproject.org> - 4.3.80-4
504c92
- snarf mdv patches
504c92
504c92
* Mon Jan 18 2010 Than Ngo <than@redhat.com> - 4.3.80-3
504c92
- backport GStreamer backend bugfixes, fix random disappearing sound under KDE
504c92
504c92
* Thu Dec 03 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.80-2
504c92
- phonon-4.3.80 (upstream tarball, yes getting ridiculous now)
504c92
504c92
* Thu Dec 03 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.80-1.20091203
504c92
- phonon-4.3.80 (20091203 snapshot)
504c92
504c92
* Thu Dec 03 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.50-6.20091203
504c92
- phonon-4.3.50 (20091203 snapshot)
504c92
504c92
* Mon Nov 30 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.50-5.20091124
504c92
- backend-gstreamer: Requires: gstreamer-plugins-good
504c92
504c92
* Fri Nov 27 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.50-4.20091124
504c92
- ln -s ../KDE/Phonon %%_includedir/phonon/Phonon (qt/phonon compat)
504c92
504c92
* Wed Nov 18 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.50-3.20091124
504c92
- phonon-4.3.50 (20091124 snapshot)
504c92
- enable pulseaudio integration (F-12+)
504c92
504c92
* Wed Nov 18 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.50-2.20091118
504c92
- phonon-4.3.50 (20091118 snapshot)
504c92
504c92
* Mon Oct 19 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.50-1.20091019
504c92
- phonon-4.3.50 (20091019 snapshot)
504c92
504c92
* Sat Oct 03 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.1-102
504c92
- Requires: qt4 >= 4.5.2-21 (f12+)
504c92
504c92
* Tue Sep 29 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.1-101
504c92
- revert to kde/phonon
504c92
- inflate to Release: 101
504c92
- -backend-gstreamer: Epoch: 2
504c92
504c92
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.1-12
504c92
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
504c92
504c92
* Thu Jun 18 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.1-11
504c92
- fix for '#' in filenames
504c92
504c92
* Tue Jun 09 2009 Than Ngo <than@redhat.com> - 4.3.1-10
504c92
- make InitialPreference=9
504c92
504c92
* Sun Jun 07 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.1-9
504c92
- optimize scriptlets
504c92
- Req: phonon >= %%phonon_version_major
504c92
504c92
* Fri Jun 05 2009 Kevin Kofler <Kevin@tigcc.ticalc.org> - 4.3.1-8
504c92
- restore patches to the xine backend
504c92
504c92
* Fri Jun 05 2009 Than Ngo <than@redhat.com> - 4.3.1-7
504c92
- only xine-backend
504c92
504c92
* Wed May 20 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.1-6
504c92
- phonon-backend-gstreamer multilib conflict (#501816)
504c92
504c92
* Wed May 20 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.1-5
504c92
- s/ImageMagick/GraphicsMagick/, avail on more secondary archs, is faster,
504c92
  yields better results.
504c92
504c92
* Mon May 04 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.1-4
504c92
- fix Source0 Url
504c92
- xine backend will not play files with non-ascii names (kdebug#172242)
504c92
504c92
* Sat Apr 11 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.1-3
504c92
- optimize scriptlets
504c92
- Provides/Requires: phonon-backend%%{_isa} ...
504c92
504c92
* Tue Mar  3 2009 Lukáš Tinkl <ltinkl@redhat.com> - 4.3.1-2
504c92
- backport GStreamer backend bugfixes (UTF-8 file handling, volume
504c92
fader)
504c92
504c92
* Fri Feb 27 2009 Than Ngo <than@redhat.com> - 4.3.1-1
504c92
- 4.3.1
504c92
504c92
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.0-6
504c92
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
504c92
504c92
* Sun Feb 01 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.0-5
504c92
- put icons in the right subpkg
504c92
504c92
* Thu Jan 29 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.0-4
504c92
- Requires: phonon-backend >= %%version
504c92
- move icons to hicolor theme and into -backend subpkgs
504c92
- BR: libxcb-devel
504c92
- move phonon-gstreamer.svg to sources
504c92
504c92
* Mon Jan 26 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.3.0-3
504c92
- BR: automoc4 >= 0.9.86
504c92
504c92
* Fri Jan 23 2009 Kevin Kofler <Kevin@tigcc.ticalc.org> - 4.3.0-2
504c92
- fix typo in postun scriptlet (introduced in 4.2.96-3)
504c92
504c92
* Thu Jan 22 2009 Than Ngo <than@redhat.com> - 4.3.0-1
504c92
- 4.3.0
504c92
504c92
* Thu Jan 08 2009 Rex Dieter <rdieter@fedoraproject.org> - 4.2.96-3
504c92
- new tarball
504c92
- put icons/scriptlets into main pkg
504c92
- Requires: phonon-backend
504c92
504c92
* Thu Jan 08 2009 Lorenzo Villani <lvillani@binaryhelix.net> - 4.2.96-2
504c92
- add gstreaer-logo.svg
504c92
504c92
* Thu Jan 08 2009 Lorenzo Villani <lvillani@binaryhelix.net> - 4.2.96-1
504c92
- 4.2.96
504c92
- rebase phonon-4.2.0-pulseaudio.patch (-> phonon-4.2.96-pulseaudio.patch)
a65101
- rebase phonon-4.2.70-xine-pulseaudio.patch
504c92
  (-> phonon-4.2.96-xine-pulseaudio.patch)
504c92
504c92
* Fri Dec 12 2008 Rex Dieter <rdieter@fedoraproject.org> 4.2.80-3
504c92
- rebuild for pkgconfig deps
504c92
504c92
* Tue Nov 25 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 4.2.80-2
504c92
- phonon-backend-xine: don't Obsolete/Provide itself, Provides: phonon-backend
504c92
504c92
* Tue Nov 25 2008 Than Ngo <than@redhat.com> 4.2.80-1
504c92
- 4.2.80
504c92
504c92
* Fri Nov 21 2008 Lorenzo Villani <lvillani@binaryhelix.net> - 4.2.80-0.1.20081121svn887051
504c92
- Use subversion (4.2.80) snapshot
504c92
- phonon-backend-xine subpkg
504c92
- make VERBOSE=1
504c92
- make install/fast
504c92
- Xine backend is in phonon now, add xine-lib-devel as BR
504c92
- BR cmake >= 2.6.0
504c92
- forward-port xine pulseaudio patch
504c92
504c92
* Tue Sep 30 2008 Than Ngo <than@redhat.com> 4.2.0-7
504c92
- fix tranparent issue by convert
504c92
504c92
* Tue Sep 30 2008 Than Ngo <than@redhat.com> 4.2.0-6
504c92
- add missing icon
504c92
504c92
* Wed Sep 17 2008 Rex Dieter <rdieter@fedoraproject.org> 4.2.0-5
504c92
- Requires: phonon-backend-xine
504c92
504c92
* Sun Aug 10 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 4.2.0-4
504c92
- rename -backend-gst back to -backend-gstreamer (longer name as -backend-xine)
504c92
  The GStreamer backend isn't ready to be the default, and KDE 4.1 also defaults
504c92
  to the Xine backend when both are installed.
504c92
- fix PulseAudio not being the default in the Xine backend (4.2 regression)
504c92
504c92
* Sat Aug 02 2008 Rex Dieter <rdieter@fedoraproject.org> 4.2.0-3
504c92
- -backend-gst: Obsoletes: -backend-gstreamer < 4.2.0-2
504c92
504c92
* Thu Jul 24 2008 Rex Dieter <rdieter@fedoraproject.org> 4.2.0-2
504c92
- rename -backend-gstreamer -> backend-gst
504c92
504c92
* Wed Jul 23 2008 Rex Dieter <rdieter@fedoraproject.org> 4.2.0-1
504c92
- phonon-4.2.0
504c92
504c92
* Mon Jul 14 2008 Rex Dieter <rdieter@fedoraproject.org> 4.2-0.4.beta2
504c92
- BR: automoc4
504c92
- -backend-gstreamer subpkg
504c92
504c92
* Tue Jul 01 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 4.2-0.3.beta2
504c92
- drop automoc libsuffix patch, no longer needed
504c92
504c92
* Fri Jun 20 2008 Rex Dieter <rdieter@fedoraproject.org> 4.2-0.2.beta2
504c92
- phonon 4.2beta2 (aka 4.1.83)
504c92
504c92
* Sat Jun 14 2008 Rex Dieter <rdieter@fedoraproject.org> 4.2-0.1.20080614svn820634
504c92
- first try
504c92