brasero/brasero.spec

520 lines
15 KiB
RPMSpec
Raw Normal View History

2009-12-02 22:09:31 +00:00
%{?rhel: %define WITH_MONO 0}
%{?!WITH_MONO: %define WITH_MONO 1}
%ifarch ppc6
%define WITH_MONO 0
%endif
Name: brasero
2011-04-04 22:44:31 +00:00
Version: 3.0.0
Release: 2%{?dist}
Summary: Gnome CD/DVD burning application
Group: Applications/Multimedia
2007-08-17 07:23:37 +00:00
License: GPLv2+
URL: http://www.gnome.org/projects/brasero/
2010-03-12 02:46:54 +00:00
#VCS: git:git://git.gnome.org/brasero
2011-04-04 22:44:31 +00:00
Source0: http://ftp.gnome.org/pub/GNOME/sources/brasero/3.0/%{name}-%{version}.tar.bz2
2011-03-25 18:26:11 +00:00
Patch0: brasero-desktop-file.patch
2011-01-08 03:34:36 +00:00
BuildRequires: gtk3-devel >= 2.99.0
2008-06-18 11:40:28 +00:00
BuildRequires: glib2-devel >= 2.15.6
2010-07-01 23:41:06 +00:00
BuildRequires: GConf2-devel
2008-06-18 11:40:28 +00:00
BuildRequires: gettext intltool gtk-doc
BuildRequires: desktop-file-utils
2008-07-06 08:55:18 +00:00
BuildRequires: gstreamer-devel >= 0.10.15
BuildRequires: gstreamer-plugins-base-devel >= 0.10.0
2009-12-02 22:09:31 +00:00
%if %{WITH_MONO}
BuildRequires: libbeagle-devel >= 0.3.0
2007-06-03 18:16:54 +00:00
%endif
2008-07-06 08:55:18 +00:00
BuildRequires: totem-pl-parser-devel >= 2.22.0
2010-11-03 15:58:35 +00:00
BuildRequires: libnotify-devel >= 0.7.0
BuildRequires: libxml2-devel >= 2.6.0
BuildRequires: dbus-glib-devel >= 0.7.2
2008-06-18 11:49:07 +00:00
BuildRequires: gnome-doc-utils >= 0.3.2
BuildRequires: scrollkeeper
BuildRequires: libxslt
BuildRequires: libburn-devel >= 0.4.0
2008-06-18 11:40:28 +00:00
BuildRequires: libisofs-devel >= 0.6.4
BuildRequires: nautilus-devel >= 2.22.2
BuildRequires: libSM-devel
2010-10-06 19:00:30 +00:00
BuildRequires: unique3-devel
2009-12-01 14:58:50 +00:00
BuildRequires: libcanberra-devel
2010-07-01 23:14:50 +00:00
BuildRequires: gobject-introspection-devel
Requires: dvd+rw-tools
Requires: cdrecord
Requires: mkisofs
Requires: cdda2wav
%ifnarch s390 s390x
Requires: cdrdao
%endif
Requires(post): shared-mime-info
Requires(postun): shared-mime-info
Requires(pre): GConf2
Requires(post): GConf2
Requires(preun): GConf2
2011-01-08 03:34:36 +00:00
Requires(post): /usr/bin/gtk-update-icon-cache
Requires(postun): /usr/bin/gtk-update-icon-cache
%description
Simple and easy to use CD/DVD burning application for the Gnome
desktop.
%package libs
Summary: Libraries for %{name}
Group: System Environment/Libraries
2009-11-12 17:57:51 +00:00
Obsoletes: nautilus-cd-burner-libs < 2.25.4
%description libs
The %{name}-libs package contains the runtime shared libraries for
%{name}.
%package nautilus
Summary: Nautilus extension for %{name}
Group: User Interface/Desktops
2009-04-17 16:50:54 +00:00
Provides: nautilus-cd-burner = %{version}-%{release}
Obsoletes: nautilus-cd-burner < 2.25.4
Requires: brasero = %{version}-%{release}
%description nautilus
The %{name}-nautilus package contains the brasero nautilus extension.
%package devel
Summary: Headers for developing programs that will use %{name}
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
Requires: pkgconfig
2009-11-12 17:57:51 +00:00
Obsoletes: nautilus-cd-burner-devel < 2.25.4
%description devel
This package contains the static libraries and header files needed for
developing brasero applications.
%prep
%setup -q
2011-03-25 18:26:11 +00:00
%patch0 -p1 -b .desktop-file
%build
%configure \
2010-09-22 13:12:47 +00:00
--with-gtk=3.0 \
--enable-nautilus \
2010-04-27 16:29:43 +00:00
--enable-libburnia \
--enable-search \
--enable-playlist \
--enable-preview \
2010-04-27 16:29:43 +00:00
--enable-inotify \
--disable-caches \
2010-09-22 14:24:33 +00:00
--disable-static
sed -i -e 's! -shared ! -Wl,--as-needed\0!g' libtool
make %{?_smp_mflags}
%install
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
make install DESTDIR=$RPM_BUILD_ROOT
find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
%find_lang %{name}
2008-02-22 22:43:02 +00:00
sed -i 's/cd:x/cd;x/' $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop
desktop-file-install --vendor "" \
--dir $RPM_BUILD_ROOT%{_datadir}/applications \
$RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop
desktop-file-install --vendor "" \
--dir $RPM_BUILD_ROOT%{_datadir}/applications \
2009-04-14 06:59:15 +00:00
$RPM_BUILD_ROOT%{_datadir}/applications/%{name}-nautilus.desktop
%post
umask 022
update-mime-database %{_datadir}/mime &> /dev/null || :
touch --no-create %{_datadir}/icons/hicolor || :
update-desktop-database &> /dev/null ||:
%post libs -p /sbin/ldconfig
%postun
umask 022
update-mime-database %{_datadir}/mime &> /dev/null || :
2010-07-01 23:41:06 +00:00
update-desktop-database &> /dev/null ||:
2010-03-12 02:46:54 +00:00
if [ $1 -eq 0 ]; then
touch --no-create %{_datadir}/icons/hicolor || :
gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null|| :
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
fi
%postun libs -p /sbin/ldconfig
2010-03-12 02:46:54 +00:00
%posttrans
gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null|| :
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
2010-03-12 02:46:54 +00:00
2010-04-27 16:29:43 +00:00
%pre
2010-07-01 23:14:50 +00:00
%gconf_schema_obsolete brasero
%files -f %{name}.lang
%defattr(-,root,root,-)
2009-07-27 02:47:20 +00:00
%doc AUTHORS COPYING NEWS README
%{_mandir}/man1/%{name}.*
%{_bindir}/*
2010-07-13 13:17:03 +00:00
%{_libdir}/brasero3
%{_datadir}/%{name}
%{_datadir}/applications/%{name}.desktop
%{_datadir}/gnome/help/%{name}
%{_datadir}/omf/%{name}
2007-02-26 14:50:50 +00:00
%{_datadir}/icons/hicolor/*/apps/*
%{_datadir}/mime/packages/*
2010-07-01 23:41:06 +00:00
%{_datadir}/GConf/gsettings/brasero.convert
%{_datadir}/glib-2.0/schemas/org.gnome.brasero.gschema.xml
%files libs
%defattr(-,root,root,-)
%{_libdir}/*.so.*
2010-01-26 15:35:14 +00:00
%{_libdir}/girepository-1.0/*.typelib
%files nautilus
%defattr(-,root,root,-)
2011-01-08 03:34:36 +00:00
%{_libdir}/nautilus/extensions-3.0/*.so
%{_datadir}/applications/brasero-nautilus.desktop
%files devel
%defattr(-,root,root,-)
2009-08-11 04:06:50 +00:00
%doc %{_datadir}/gtk-doc/html/libbrasero-media
%doc %{_datadir}/gtk-doc/html/libbrasero-burn
2009-07-27 02:59:18 +00:00
%doc ChangeLog
%{_libdir}/*.so
%{_libdir}/pkgconfig/*.pc
2010-07-13 13:17:03 +00:00
%{_includedir}/brasero3
2011-01-13 21:55:16 +00:00
%{_datadir}/gir-1.0/*.gir
%changelog
* Fri May 6 2011 Christopher Aillon <caillon@redhat.com> - 3.0.0-1
- Update scriptlets per packaging guidelines
2011-04-04 22:44:31 +00:00
* Mon Apr 4 2011 Matthias Clasen <mclasen@redhat.com> - 3.0.0-1
- Update to 3.0.0
2011-03-25 17:53:37 +00:00
* Fri Mar 25 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.93-1
- Update to 2.91.93
2011-03-08 11:06:02 +00:00
* Tue Mar 8 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.91-1
- Update to 2.91.91
2011-02-22 12:57:03 +00:00
* Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.90-1
- Update to 2.91.90
2011-02-11 03:18:19 +00:00
* Thu Feb 10 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.6-4
- Rebuild against newer gtk
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.91.6-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2011-02-06 03:50:21 +00:00
* Sun Feb 06 2011 Bastien Nocera <bnocera@redhat.com> 2.91.6-2
- Fix GTK+ name in pkg-config file
2011-02-02 08:35:13 +00:00
* Wed Feb 2 2011 Christopher Aillon <caillon@redhat.com> - 2.91.6-1
- Update to 2.91.6
2011-01-13 21:55:16 +00:00
* Thu Jan 13 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.5-2
- Move girs to -devel
2011-01-10 17:18:36 +00:00
* Mon Jan 10 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.5-1
- Update to 2.91.5
2011-01-08 03:34:36 +00:00
* Fri Jan 7 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.4.2-1
- Update to 2.91.4.2
2010-12-03 15:45:01 +00:00
* Fri Dec 3 2010 Matthias Clasen <mclasen@redhat.com> - 2.91.3-1
- Update to 2.91.3
2010-11-12 03:43:06 +00:00
* Thu Nov 11 2010 Matthias Clasen <mclasen@redhat.com> - 2.91.2-1
- Update to 2.91.2
2010-11-03 15:58:35 +00:00
* Wed Nov 3 2010 Matthias Clasen <mclasen@redhat.com> - 2.91.2-0.2.gitcede364
- Rebuild against libnotify 0.7.0
2010-11-02 03:53:22 +00:00
* Mon Nov 1 2010 Matthias Clasen <mclasen@redhat.com> - 2.91.2-0.1.gitcede364
- Git snapshot that builds against gtk3
2010-10-06 19:00:30 +00:00
* Wed Oct 6 2010 Matthias Clasen <mclasen@redhat.com> - 2.91.0-1
- Update to 2.91.0
2010-09-28 16:18:10 +00:00
* Tue Sep 28 2010 Matthias Clasen <mclasen@redhat.com> - 2.32.0-1
- Update to 2.32.0
2010-09-22 12:54:50 +00:00
* Wed Sep 22 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.92-1
- Update to 2.31.92
2010-08-31 17:47:14 +00:00
* Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.91-1
- Update to 2.31.91
2010-08-20 00:19:57 +00:00
* Thu Aug 19 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.90-1
- Update to 2.31.90
* Thu Jul 15 2010 Colin Walters <walters@verbum.org> - 2.31.5-2
- Rebuild with new gobject-introspection
2010-07-13 13:17:03 +00:00
* Tue Jul 13 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.5-1
- Update to 2.31.5
2010-07-01 23:14:50 +00:00
* Wed Jun 30 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.4-1
- Update to 2.31.4
2010-06-08 14:55:48 +00:00
* Tue Jun 8 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.3-1
- Update to 2.31.3
2010-05-27 19:17:17 +00:00
* Thu May 27 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.2-1
- Update to 2.31.2
2010-04-27 16:29:43 +00:00
* Tue Apr 27 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.1-1
- Update to 2.30.1
- Spec file cleanups
2010-03-29 19:06:14 +00:00
* Mon Mar 29 2010 Matthias Clasen <mclasen@redhat.com> - 2.30.0-1
- Update to 2.30.0
2010-03-12 02:46:54 +00:00
* Thu Mar 11 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.92-1
- Update to 2.29.92
2010-03-04 01:54:01 +00:00
* Wed Mar 3 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.91-2
- Fix a nautilus cd-burner crash
2010-02-22 23:55:04 +00:00
* Mon Feb 22 2010 Matthias Clasen <mclasen@redhat.com> - 2.29.91-1
- Update to 2.29.91
2010-02-10 16:04:48 +00:00
* Wed Feb 10 2010 Bastien Nocera <bnocera@redhat.com> 2.29.90-1
- Update to 2.29.90
* Tue Jan 26 2010 Bastien Nocera <bnocera@redhat.com> 2.29.4-2
- Add patch for new totem-pl-parser API
2010-01-26 15:21:15 +00:00
- Fix introspection building
2009-12-22 20:59:00 +00:00
* Tue Dec 22 2009 Matthias Clasen <mclasen@redhat.com> 2.29.4-1
- Update to 2.29.4
2009-12-02 22:09:31 +00:00
* Wed Dec 2 2009 Bastien Nocera <bnocera@redhat.com> 2.29.3-2
- Make libbeagle dep more automatic
2009-12-01 14:33:28 +00:00
* Tue Dec 01 2009 Bastien Nocera <bnocera@redhat.com> 2.29.3-1
- Update to 2.29.3
2009-11-12 17:57:51 +00:00
* Thu Nov 12 2009 Matthias Clasen <mclasen@redhat.com> 2.28.2-3
- Obsolete nautilus-cd-burner-devel and -libs as well
* Mon Oct 26 2009 Matthias Clasen <mclasen@redhat.com> 2.28.2-2
- Avoid a stray underline in a button label
* Tue Oct 20 2009 Matthias Clasen <mclasen@redhat.com> 2.28.2-1
- Update to 2.28.2
* Wed Oct 07 2009 Bastien Nocera <bnocera@redhat.com> 2.28.1-2
- Fix command-line parsing (#527484)
2009-11-12 17:57:51 +00:00
* Mon Oct 5 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.1-1
- Update to 2.28.1, fixes a number of crashes and other serious bugs:
- Fix a crash when we try to download a missing gstreamer plugin through PK
- Don't fail if a drive cannot be checksumed after a burn
- Fix a data corruption when libisofs was used for a dummy session
- Fix #596625: brasero crashed with SIGSEGV in brasero_track_data_cfg_add
- Fix progress reporting
...
* Fri Oct 2 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-2
- Fix ejecting after burning
2009-09-22 05:54:30 +00:00
* Tue Sep 22 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-1
- Update to 2.28.0
* Fri Sep 11 2009 Karsten Hopp <karsten@redhat.com> 2.27.92-2
- fix requirements on s390, s390x where we don't have cdrdao
2009-09-08 00:07:32 +00:00
* Mon Sep 7 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.92-1
- Update to 2.27.92
2009-08-25 21:22:39 +00:00
* Tue Aug 25 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.91-1
- Update to 2.27.91
2009-08-10 21:30:12 +00:00
* Mon Aug 10 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.90-1
- Update to 2.27.90
2009-08-03 22:49:31 +00:00
* Mon Aug 3 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.5-2
- Fix a nautilus segfault when burning
2009-07-28 04:21:12 +00:00
* Tue Jul 28 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.5-1
- Update to 2.27.5
* Sun Jul 26 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.4-3
2009-07-27 02:47:20 +00:00
- Move ChangeLog to -devel to save some space
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.27.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2009-07-14 05:08:01 +00:00
* Tue Jul 14 2009 Matthias Clasen <mclasen@redhat.com> 2.27.4-1
- Update to 2.27.4
2009-06-16 06:12:21 +00:00
* Tue Jun 16 2009 Matthias Clasen <mclasen@redhat.com> 2.27.3-1
- Update to 2.27.3
2009-05-27 09:51:22 +00:00
* Wed May 27 2009 Bastien Nocera <bnocera@redhat.com> 2.27.2-1
- Update to 2.27.2
2009-05-26 15:15:28 +00:00
* Tue May 26 2009 Bastien Nocera <bnocera@redhat.com> 2.27.1-2
- Add missing unique-devel BR
2009-05-26 15:06:07 +00:00
* Mon May 18 2009 Bastien Nocera <bnocera@redhat.com> 2.27.1-1
- Update to 2.27.1
* Fri May 1 2009 Bill Nottingham <notting@redhat.com> - 2.26.1-3
- require main package in brasero-nautilus (#498632)
2009-04-17 16:50:54 +00:00
* Fri Apr 17 2009 Denis Leroy <denis@poolshark.org> - 2.26.1-2
- Obsoletes nautilus-cd-burner
2009-04-14 17:27:48 +00:00
* Tue Apr 14 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.1-1
- Update to 2.26.1
- See http://download.gnome.org/sources/brasero/2.26/brasero-2.26.1.news
2009-04-14 06:59:15 +00:00
* Mon Apr 13 2009 Denis Leroy <denis@poolshark.org> - 2.26.0-2
- Removed duplicate desktop source
2009-03-29 23:58:21 +00:00
* Sun Mar 29 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.0-1
- Update to 2.26.0
2009-03-02 18:46:45 +00:00
* Mon Mar 02 2009 - Bastien Nocera <bnocera@redhat.com> - 2.25.91.2-3
- Fix icon and Bugzilla component
* Mon Mar 02 2009 - Bastien Nocera <bnocera@redhat.com> - 2.25.91.2-2
- Fix regressions in burn:/// and blank media handling
* Tue Feb 24 2009 Denis Leroy <denis@poolshark.org> - 2.25.91.2-1
- Update to upstream 2.25.91.2
- Dvdcss patch upstreamed
- Split nautilus extension into subpackage (#485918)
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.25.90-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Sat Feb 7 2009 Denis Leroy <denis@poolshark.org> - 2.25.90-2
2009-02-07 18:50:49 +00:00
- Added patch to fix dynamic load of libdvdcss (#484413)
* Tue Feb 3 2009 Denis Leroy <denis@poolshark.org> - 2.25.90-1
- Update to upstream 2.25.90
- Split media library into separate RPM (#483754)
- Added patch to validate desktop files
* Tue Jan 20 2009 Denis Leroy <denis@poolshark.org> - 0.9.1-1
- Update to upstream 0.9.1
- Added development package
2008-12-17 06:24:17 +00:00
* Tue Dec 16 2008 Denis Leroy <denis@poolshark.org> - 0.8.3-1
- Update to upstream 0.8.4
- Enabled nautilus extension
2008-09-15 08:17:56 +00:00
* Mon Sep 15 2008 Denis Leroy <denis@poolshark.org> - 0.8.2-1
- Update to upstream 0.8.2
* Wed Aug 27 2008 Denis Leroy <denis@poolshark.org> - 0.8.1-1
- Update to upstream 0.8.1
- Desktop patch upstreamed
2008-07-06 08:55:18 +00:00
* Sun Jul 6 2008 Denis Leroy <denis@poolshark.org> - 0.7.91-1
- Update to unstable 0.7.91
- open flags patch upstreamed
2008-06-18 11:40:28 +00:00
* Wed Jun 11 2008 Denis Leroy <denis@poolshark.org> - 0.7.90-1
- Update to unstable 0.7.90
2008-06-22 08:30:03 +00:00
- Added patch to validate desktop file
2008-06-18 11:40:28 +00:00
- BRs updated
2008-05-16 11:46:54 +00:00
* Fri May 16 2008 Denis Leroy <denis@poolshark.org> - 0.7.1-4
- Rebuild for new totem-pl-parser
2008-02-22 22:43:02 +00:00
* Sat Feb 23 2008 Denis Leroy <denis@poolshark.org> - 0.7.1-3
- Fixed desktop mime field
2008-02-19 01:07:38 +00:00
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.7.1-2
- Autorebuild for GCC 4.3
* Tue Jan 29 2008 Denis Leroy <denis@poolshark.org> - 0.7.1-1
- Update to 0.7.1 upstream, bugfix release
* Sun Dec 30 2007 Denis Leroy <denis@poolshark.org> - 0.7.0-1
- Update to upstream 0.7.0, updated BRs
- Forward-ported open() permission patch
* Mon Dec 10 2007 Denis Leroy <denis@poolshark.org> - 0.6.1-4
- Changed totem-devel req to totem-pl-parser-devel
2007-12-09 10:29:53 +00:00
* Sun Dec 9 2007 Denis Leroy <denis@poolshark.org> - 0.6.1-3
- Rebuild with new libbeagle
* Fri Nov 9 2007 Denis Leroy <denis@poolshark.org> - 0.6.1-2
- Rebuild to pick up new totem version (#361361)
* Sat Aug 25 2007 Denis Leroy <denis@poolshark.org> - 0.6.1-1
- Update to upstream version 0.6.1
- Filter UI patch is now upstream
2007-08-17 07:23:37 +00:00
* Fri Aug 17 2007 Denis Leroy <denis@poolshark.org> - 0.6.0-2
- Updated License tag
- Fixed open() O_CREAT problem
* Fri Aug 10 2007 Denis Leroy <denis@poolshark.org> - 0.6.0-1
- Update to 0.6.0
- Removed libburn support until it compiles against libisofs 0.2.8
- Fixed project URL
2007-08-11 09:22:10 +00:00
- Added patch to port to new Gtk+ tooltip interface
- Added patch to fix filter dialog crash
2007-06-03 18:16:54 +00:00
* Sun Jun 3 2007 Denis Leroy <denis@poolshark.org> - 0.5.2-4
- Removed beagle support for ppc64
* Tue May 22 2007 Denis Leroy <denis@poolshark.org> - 0.5.2-3
- Added umask 022 to scriptlets (#230781)
2007-05-21 11:28:36 +00:00
* Mon May 21 2007 Denis Leroy <denis@poolshark.org> - 0.5.2-2
- Rebuild to pick up new totem library
2007-02-26 14:50:50 +00:00
* Mon Feb 26 2007 Denis Leroy <denis@poolshark.org> - 0.5.2-1
- Update to 0.5.2
- Removed libisofs patch, now upstream
* Wed Jan 17 2007 Denis Leroy <denis@poolshark.org> - 0.5.1-2
- Added patch to support libisofs.so.4 and libburn.so.6
2006-11-16 07:37:00 +00:00
* Thu Nov 16 2006 Denis Leroy <denis@poolshark.org> - 0.5.1-1
- Update to 0.5.1
* Sun Oct 29 2006 Denis Leroy <denis@poolshark.org> - 0.5.0-1
- Update to 0.5.0
- Updated icon paths
- Added gconf schemas sections
* Tue Oct 3 2006 Denis Leroy <denis@poolshark.org> - 0.4.4-3
- fixed homepage URL
* Tue Sep 26 2006 Denis Leroy <denis@poolshark.org> - 0.4.4-2
- BRs cleanup
* Fri Sep 22 2006 Denis Leroy <denis@poolshark.org> - 0.4.4-1
- First version
foo