8bcab4
%define libxml2_version 2.4.12
8bcab4
%define glib2_version 2.25.9
8bcab4
%define dbus_version 1.0.1
8bcab4
%define dbus_glib_version 0.74
8bcab4
8bcab4
Summary: A process-transparent configuration system
8bcab4
Name: GConf2
8bcab4
Version: 3.2.6
62ff7e
Release: 8%{?dist}
8bcab4
License: LGPLv2+ and GPLv2+
8bcab4
Group: System Environment/Base
8bcab4
#VCS: git:git://git.gnome.org/gconf
8bcab4
Source0: http://download.gnome.org/sources/GConf/3.2/GConf-%{version}.tar.xz
8bcab4
Source1: macros.gconf2
8bcab4
URL: http://projects.gnome.org/gconf/
8bcab4
8bcab4
# http://bugzilla.gnome.org/show_bug.cgi?id=568845
8bcab4
Patch0: GConf-gettext.patch
8bcab4
8bcab4
# https://bugzilla.gnome.org/show_bug.cgi?id=671490
8bcab4
Patch1: drop-spew.patch
8bcab4
8bcab4
# https://bugzilla.gnome.org/show_bug.cgi?id=987018
8bcab4
Patch2: GConf-shebang.patch
8bcab4
8bcab4
# https://bugzilla.redhat.com/show_bug.cgi?id=755992
8bcab4
Patch99: workaround-crash.patch
8bcab4
Patch100: pkill-hack.patch
8bcab4
8bcab4
BuildRequires: libxml2-devel >= %{libxml2_version}
8bcab4
BuildRequires: libxslt-devel
8bcab4
BuildRequires: glib2-devel >= %{glib2_version}
8bcab4
BuildRequires: gtk-doc >= 0.9
8bcab4
BuildRequires: pkgconfig >= 0.14
8bcab4
BuildRequires: gettext
8bcab4
BuildRequires: intltool
8bcab4
BuildRequires: polkit-devel >= 0.92
8bcab4
BuildRequires: dbus-glib-devel >= 0.8
8bcab4
BuildRequires: gobject-introspection-devel >= 0.6.7
8bcab4
BuildRequires: autoconf automake libtool
8bcab4
Requires: dbus
8bcab4
# for patch0
8bcab4
Requires: /usr/bin/killall
8bcab4
Conflicts: GConf2-dbus
8bcab4
8bcab4
Provides: GConf2-gtk = 3.2.6-6
8bcab4
Obsoletes: GConf2-gtk < 3.2.6-6
8bcab4
8bcab4
%description
8bcab4
GConf is a process-transparent configuration database API used to
8bcab4
store user preferences. It has pluggable backends and features to
8bcab4
support workgroup administration.
8bcab4
8bcab4
%package devel
8bcab4
Summary: Headers and libraries for GConf development
8bcab4
Group: Development/Libraries
8bcab4
Requires: %{name} = %{version}-%{release}
8bcab4
Requires: libxml2-devel >= %{libxml2_version}
8bcab4
Requires: glib2-devel >= %{glib2_version}
8bcab4
# we install a pc file
8bcab4
Requires: pkgconfig
8bcab4
# we install an automake macro
8bcab4
Requires: automake
8bcab4
Conflicts: GConf2-dbus-devel
8bcab4
8bcab4
%description devel
8bcab4
GConf development package. Contains files needed for doing
8bcab4
development using GConf.
8bcab4
8bcab4
%prep
8bcab4
%setup -q -n GConf-%{version}
8bcab4
%patch0 -p1 -b .gettext
8bcab4
%patch1 -p1 -b .drop-spew
8bcab4
%patch2 -p1 -b .shebang
8bcab4
8bcab4
%patch99 -p1 -b .workaround-crash
8bcab4
%patch100 -p1 -b .pkill-hack
8bcab4
8bcab4
autoreconf -i -f
8bcab4
8bcab4
%build
8bcab4
%configure --disable-static --enable-defaults-service --disable-orbit --with-gtk=3.0
8bcab4
8bcab4
# drop unneeded direct library deps with --as-needed
8bcab4
# libtool doesn't make this easy, so we do it the hard way
8bcab4
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/      func_append compile_command " -Wl,-O1,--as-needed"\n      func_append finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
8bcab4
8bcab4
make
8bcab4
8bcab4
%install
8bcab4
make install DESTDIR=$RPM_BUILD_ROOT
8bcab4
8bcab4
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/gconf/schemas
8bcab4
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/gconf/gconf.xml.system
8bcab4
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/rpm/
8bcab4
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/rpm-state/gconf
8bcab4
mkdir -p $RPM_BUILD_ROOT%{_datadir}/GConf/gsettings
8bcab4
8bcab4
install -p -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/rpm/
8bcab4
8bcab4
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
8bcab4
rm -f $RPM_BUILD_ROOT%{_libdir}/GConf/2/*.la
8bcab4
rm -f $RPM_BUILD_ROOT%{_libdir}/gio/modules/*.la
8bcab4
8bcab4
mkdir -p $RPM_BUILD_ROOT%{_datadir}/GConf/gsettings
8bcab4
8bcab4
%find_lang %name
8bcab4
8bcab4
%post
8bcab4
/sbin/ldconfig
8bcab4
8bcab4
if [ $1 -gt 1 ]; then
8bcab4
    if ! grep -F -q gconf.xml.system %{_sysconfdir}/gconf/2/path; then
8bcab4
        sed -i -e 's@xml:readwrite:$(HOME)/.gconf@&\n\n# Location for system-wide settings.\nxml:readonly:/etc/gconf/gconf.xml.system@' %{_sysconfdir}/gconf/2/path
8bcab4
    fi
8bcab4
fi
8bcab4
8bcab4
%postun -p /sbin/ldconfig
8bcab4
8bcab4
%files -f %{name}.lang
8bcab4
%doc COPYING NEWS README
8bcab4
%config(noreplace) %{_sysconfdir}/gconf/2/path
8bcab4
%dir %{_sysconfdir}/gconf
8bcab4
%dir %{_sysconfdir}/gconf/2
8bcab4
%dir %{_sysconfdir}/gconf/gconf.xml.defaults
8bcab4
%dir %{_sysconfdir}/gconf/gconf.xml.mandatory
8bcab4
%dir %{_sysconfdir}/gconf/gconf.xml.system
8bcab4
%dir %{_sysconfdir}/gconf/schemas
8bcab4
%{_bindir}/gconf-merge-tree
8bcab4
%{_bindir}/gconftool-2
8bcab4
%{_bindir}/gsettings-data-convert
8bcab4
%doc %{_mandir}/man1/gsettings-data-convert.1*
8bcab4
%{_sysconfdir}/xdg/autostart/gsettings-data-convert.desktop
8bcab4
%{_libexecdir}/gconfd-2
8bcab4
%{_libdir}/*.so.*
8bcab4
%{_libdir}/GConf/2/*.so
8bcab4
%dir %{_datadir}/sgml
8bcab4
%{_datadir}/sgml/gconf
8bcab4
%{_datadir}/GConf
8bcab4
%{_mandir}/man1/*
8bcab4
%dir %{_libdir}/GConf
8bcab4
%dir %{_libdir}/GConf/2
8bcab4
%{_sysconfdir}/rpm/macros.gconf2
8bcab4
%{_sysconfdir}/dbus-1/system.d/org.gnome.GConf.Defaults.conf
8bcab4
%{_libexecdir}/gconf-defaults-mechanism
8bcab4
%{_datadir}/polkit-1/actions/org.gnome.gconf.defaults.policy
8bcab4
%{_datadir}/dbus-1/system-services/org.gnome.GConf.Defaults.service
8bcab4
%{_datadir}/dbus-1/services/org.gnome.GConf.service
8bcab4
# Something else should probably own this, but I'm not sure what.
8bcab4
%dir %{_localstatedir}/lib/rpm-state/
8bcab4
%{_localstatedir}/lib/rpm-state/gconf/
8bcab4
%{_libdir}/gio/modules/libgsettingsgconfbackend.so
8bcab4
%{_libdir}/girepository-1.0
8bcab4
8bcab4
%files devel
8bcab4
%{_libdir}/*.so
8bcab4
%{_includedir}/gconf
8bcab4
%{_datadir}/aclocal/*.m4
8bcab4
%{_datadir}/gtk-doc/html/gconf
8bcab4
%{_libdir}/pkgconfig/*
8bcab4
%{_datadir}/gir-1.0
8bcab4
%{_bindir}/gsettings-schema-convert
8bcab4
%doc %{_mandir}/man1/gsettings-schema-convert.1*
8bcab4
8bcab4
%changelog
62ff7e
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 3.2.6-8
62ff7e
- Mass rebuild 2014-01-24
62ff7e
62ff7e
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 3.2.6-7
62ff7e
- Mass rebuild 2013-12-27
62ff7e
8bcab4
* Fri Sep 13 2013 Marek Kasik <mkasik@redhat.com> 3.2.6-6.3
8bcab4
- Change shebang to absolute path in gsettings-schema-convert
8bcab4
- Resolves: #987018
8bcab4
8bcab4
* Tue Jun  4 2013 Marek Kasik <mkasik@redhat.com> 3.2.6-6.2
8bcab4
- Use "grep -F" instead of deprecated "fgrep"
8bcab4
8bcab4
* Tue Jun  4 2013 Marek Kasik <mkasik@redhat.com> 3.2.6-6.1
8bcab4
- Use correct tarball
8bcab4
8bcab4
* Fri Apr 26 2013 Kalev Lember <kalevlember@gmail.com> 3.2.6-6
8bcab4
- Update the GConf2-gtk versioned obsoletes
8bcab4
8bcab4
* Wed Apr 17 2013 Ray Strode <rstrode@redhat.com> 3.2.6-5
8bcab4
- Make --makefile-install-rule work even in packages that don't use the macros
8bcab4
8bcab4
* Mon Apr 15 2013 Ray Strode <rstrode@redhat.com> 3.2.6-4
8bcab4
- Make pkill -HUP -f gconfd-2 work again
8bcab4
- Make --makefile-install-rull less noisy
8bcab4
8bcab4
* Fri Apr 12 2013 Ray Strode <rstrode@redhat.com> 3.2.6-3
8bcab4
- Update GConf upgrade macros (Patch from Michael Schwendt)
8bcab4
  Resolves: #920615
8bcab4
8bcab4
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.6-2
8bcab4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
8bcab4
8bcab4
* Mon Jan 21 2013 Matthias Clasen <mclasen@redhat.com> 3.2.6-1
8bcab4
- Update to 3.2.6
8bcab4
- Drop the gtk subpackage
8bcab4
8bcab4
* Fri Nov 16 2012 Marek Kasik <mkasik@redhat.com> 3.2.5-4
8bcab4
- Update License field
8bcab4
- Remove unused patches
8bcab4
- Add bug reference to one patch
8bcab4
8bcab4
* Mon Sep 24 2012 Ray Strode <rstrode@redhat.com> 3.2.5-3
8bcab4
- More crasher workarounds
8bcab4
  Resolves: #858348
8bcab4
8bcab4
* Thu Sep 13 2012 Ray Strode <rstrode@redhat.com> 3.2.5-2
8bcab4
- Work around crasher bug
8bcab4
  Resolves: #755992
8bcab4
8bcab4
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.5-2
8bcab4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8bcab4
8bcab4
* Thu Mar 15 2012 Matthias Clasen <mclasen@redhat.com> - 3.2.5-1
8bcab4
- Update to 3.2.5
8bcab4
8bcab4
* Fri Mar  9 2012 Matthias Clasen <mclasen@redhat.com> - 3.2.4-1
8bcab4
- Update to 3.2.4
8bcab4
8bcab4
* Mon Feb 13 2012 Ray Strode <rstrode@redhat.com> 3.2.3-4
8bcab4
- Potentially fix crasher bug
8bcab4
  Resolves: #756245
8bcab4
8bcab4
* Thu Jan 19 2012 Matthias Clasen <mclasen@redhat.com> - 3.2.3-3
8bcab4
- Don't build the openldap backend
8bcab4
- Deal gracefully with missing schemas in gsettings-data-convert
8bcab4
8bcab4
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.3-2
8bcab4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
8bcab4
8bcab4
* Wed Nov  2 2011 Matthias Clasen <mclasen@redhat.com> - 3.2.3-1
8bcab4
- Update to 3.2.3
8bcab4
8bcab4
* Tue Sep 20 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.92-1
8bcab4
- Update to 3.1.92
8bcab4
8bcab4
* Mon Jul 25 2011 Matthew Barnes <mbarnes@redhat.com> 3.1.4-1
8bcab4
- Update to 3.1.4
8bcab4
8bcab4
* Tue Jul 05 2011 Ray Strode <rstrode@redhat.com> 3.1.3-2
8bcab4
- Add back one of the non-upstream patches, since
8bcab4
  it introduced a non-backward compatible change
8bcab4
  to the file format and it's going to be upstreamed soon
8bcab4
  anyway
8bcab4
  Related GNOME: #653922
8bcab4
8bcab4
* Fri Jul 01 2011 Ray Strode <rstrode@redhat.com> 3.1.3-1
8bcab4
- Update to 3.1.3
8bcab4
- Remove orbit dependency
8bcab4
- drop unupstreamed patches judiciously
8bcab4
8bcab4
* Fri Jun 17 2011 Tomas Bzatek <tbzatek@redhat.com> - 2.32.4-1
8bcab4
- Update to 2.32.4
8bcab4
8bcab4
* Mon Apr 25 2011 Matthias Clasen <mclasen@redhat.com> 2.32.3-1
8bcab4
- Update to 2.32.3
8bcab4
8bcab4
* Mon Apr  4 2011 Matthias Clasen <mclasen@redhat.com> 2.32.2-1
8bcab4
- Update to 2.32.2
8bcab4
8bcab4
* Thu Feb 10 2011 Matthias Clasen <mclasen@redhat.com> 2.32.1-8
8bcab4
- Rebuild against newer gtk3
8bcab4
8bcab4
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.32.1-6
8bcab4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8bcab4
8bcab4
* Wed Feb  2 2011 Matthias Clasen <mclasen@redhat.com> - 2.32.1-5
8bcab4
- Rebuild against newer gtk3
8bcab4
8bcab4
* Sun Jan 16 2011 Matthias Clasen <mclasen@redhat.com> - 2.32.1-4
8bcab4
- Co-own /usr/share/sgml
8bcab4
8bcab4
* Sun Jan  9 2011 Matthias Clasen <mclasen@redhat.com> - 2.32.1-3
8bcab4
- Rebuild against newer gtk3
8bcab4
8bcab4
* Fri Dec  3 2010 Matthias Clasen <mclasen@redhat.com> - 2.32.1-2
8bcab4
- Rebuild against new gtk
8bcab4
8bcab4
* Thu Nov 11 2010 Matthias Clasen <mclasen@redhat.com> - 2.32.1-1
8bcab4
- Update to 2.32.1
8bcab4
8bcab4
* Tue Sep 28 2010 Matthias Clasen <mclasen@redhat.com> - 2.32.0-1
8bcab4
- Update to 2.32.0
8bcab4
8bcab4
* Tue Sep 21 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.91-2
8bcab4
- Rebuild against newer gobject-introspection
8bcab4
8bcab4
* Tue Aug 31 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.91-1
8bcab4
- Update to 2.31.91
8bcab4
8bcab4
* Fri Aug 13 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.7-2
8bcab4
- Strip x permissions from rpm macros file. (#600635)
8bcab4
8bcab4
* Thu Aug  5 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.7-1
8bcab4
- Update to 2.31.7
8bcab4
8bcab4
* Thu Jul 15 2010 Colin Walters <walters@verbum.org> - 2.31.6-2
8bcab4
- Rebuild with new gobject-introspection
8bcab4
8bcab4
* Mon Jul 12 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.6-1
8bcab4
- Update to 2.31.6
8bcab4
8bcab4
* Tue Jun 29 2010 Matthew Garrett <mjg@redhat.com> - 2.31.5-2
8bcab4
- Fix crasher in gsettings-data-convert caused by wrong realloc size
8bcab4
8bcab4
* Tue Jun 29 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.5-1
8bcab4
- Update to 2.31.5
8bcab4
8bcab4
* Mon Jun 21 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.4-1
8bcab4
- Update to 2.31.4
8bcab4
8bcab4
* Thu May 27 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 2.31.3-2
8bcab4
- Rebuild for pkgconfig deps (ref: #596433)
8bcab4
8bcab4
* Tue May 25 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.3-1
8bcab4
- Update to 2.31.3
8bcab4
8bcab4
* Fri May 21 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.2-4
8bcab4
- Install an autostart file for gsettings-data-convert
8bcab4
8bcab4
* Wed May 19 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.2-3
8bcab4
- Rebuild against newer glib
8bcab4
8bcab4
* Sun May 16 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.2-2
8bcab4
- Rebuild against newer glib
8bcab4
8bcab4
* Fri Apr 23 2010 Matthias Clasen <mclasen@redhat.com> - 2.31.2-1
8bcab4
- Update to 2.31.2
8bcab4
8bcab4
* Mon Apr 19 2010 Matthias Clasen <mclasen@redhat.com> - 2.23.1-1
8bcab4
- Update to 2.31.1
8bcab4
- Include introspection data
8bcab4
8bcab4
* Tue Mar 30 2010 Matthias Clasen <mclasen@redhat.com> - 2.28.1-1
8bcab4
- Update to 2.28.1
8bcab4
8bcab4
* Thu Mar 18 2010 Tom "spot" Callaway <tcallawa@redhat.com> 2.28.0-10
8bcab4
- own /var/lib/rpm-state/ too
8bcab4
8bcab4
* Wed Mar 03 2010 Tom "spot" Callaway <tcallawa@redhat.com> 2.28.0-9
8bcab4
- add macros.gconf2
8bcab4
- own /var/lib/rpm-state/gconf
8bcab4
8bcab4
* Mon Feb 01 2010 Colin Walters <walters@verbum.org> 2.28.0-8
8bcab4
- Add defaults patch from f-12 branch 
8bcab4
8bcab4
* Mon Feb 01 2010 Colin Walters <walters@verbum.org> 2.28.0-6
8bcab4
- Do not catch segv etc. let abrt catch them
8bcab4
8bcab4
* Thu Jan 28 2010 Ray Strode <rstrode@redhat.com> 2.28.0-5
8bcab4
- Add defattr directive to gtk subpackage files section
8bcab4
8bcab4
* Tue Jan 19 2010 Matthias Clasen <mclasen@redhat.com> - 2.28.0-4
8bcab4
- Make the defaults mechanism use the right polkit actions
8bcab4
8bcab4
* Mon Dec 14 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-3
8bcab4
- Avoid a crash when gconftool-2 can't read the db  (#547238)
8bcab4
8bcab4
* Wed Oct  7 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-2
8bcab4
- Fix a problem with schema translations
8bcab4
8bcab4
* Wed Sep 23 2009 Matthias Clasen <mclasen@redhat.com> - 2.28.0-1
8bcab4
- Update to 2.28.0
8bcab4
8bcab4
* Tue Aug 25 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.0-1
8bcab4
- Update to 2.27.0
8bcab4
8bcab4
* Mon Aug 10 2009 Ville Skyttä <ville.skytta at iki.fi> - 2.26.2-6
8bcab4
- Convert specfile to UTF-8.
8bcab4
8bcab4
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.26.2-5
8bcab4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
8bcab4
8bcab4
* Sun Jun 14 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.2-4
8bcab4
- Minor directory ownership cleanup
8bcab4
8bcab4
* Tue Jun  9 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.2-3
8bcab4
- Improve the port
8bcab4
8bcab4
* Tue Jun  9 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.2-2
8bcab4
- Port to PolicyKit 1
8bcab4
8bcab4
* Fri May 15 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.2-1
8bcab4
- Update to 2.26.2
8bcab4
- See http://download.gnome.org/sources/GConf/2.26/GConf-2.26.1.news
8bcab4
- See http://download.gnome.org/sources/GConf/2.26/GConf-2.26.2.news
8bcab4
8bcab4
* Mon Apr 27 2009 Matthias Clasen  <mclasen@redhat.com> - 2.26.0-3
8bcab4
- Support client-side translations
8bcab4
8bcab4
* Mon Apr 13 2009 Adam Jackson <ajax@redhat.com> 2.26.0-2
8bcab4
- Explicit Conflicts: GConf2-dbus (#492636)
8bcab4
8bcab4
* Mon Mar 16 2009 Ray Strode <rstrode@redhat.com> - 2.26.0-1
8bcab4
- update to 2.26.0
8bcab4
8bcab4
* Tue Mar  3 2009 Matthias Clasen  <mclasen@redhat.com> - 2.25.2-2
8bcab4
- Avoid some gratitious extra work in the markup backend
8bcab4
8bcab4
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.25.2-2
8bcab4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
8bcab4
8bcab4
* Tue Feb 17 2009 Matthias Clasen  <mclasen@redhat.com> - 2.25.2-1
8bcab4
- Update to 2.25.2
8bcab4
8bcab4
* Sun Feb 15 2009 Matthias Clasen  <mclasen@redhat.com> - 2.25.1-1
8bcab4
- Update to 2.25.1
8bcab4
8bcab4
* Sat Jan 10 2009 Matthias Clasen  <mclasen@redhat.com> - 2.25.0-1
8bcab4
- Update to 2.25.0
8bcab4
8bcab4
* Tue Dec 16 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.0-3
8bcab4
- Rebuild for pkg-config requires
8bcab4
8bcab4
* Fri Nov 21 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.0-2
8bcab4
- Better URL
8bcab4
8bcab4
* Mon Sep 22 2008 Matthias Clasen  <mclasen@redhat.com> - 2.24.0-1
8bcab4
- Update to 2.24.0
8bcab4
- Drop obsolete timeout patch
8bcab4
8bcab4
* Fri Aug 22 2008 Matthias Clasen  <mclasen@redhat.com> - 2.23.2-1
8bcab4
- Update to 2.23.2
8bcab4
- Drop upstreamed patches
8bcab4
8bcab4
* Wed Jun  4 2008 Matthias Clasen  <mclasen@redhat.com> - 2.23.1-1
8bcab4
- Upodate to 2.23.1
8bcab4
8bcab4
* Mon Jun  2 2008 Matthias Clasen  <mclasen@redhat.com> - 2.22.0-10
8bcab4
- Make gconfd notice defaults changes
8bcab4
8bcab4
* Wed May 21 2008 Ray Strode <rstrode@redhat.com> - 2.22.0-9
8bcab4
- Don't ever try to autolaunch a bus if DISPLAY is unset
8bcab4
8bcab4
* Wed May 21 2008 Ray Strode <rstrode@redhat.com> - 2.22.0-8
8bcab4
- If the session bus isn't running, assume local client side
8bcab4
  access to the database (bug 446703)
8bcab4
8bcab4
* Wed May 14 2008 Ray Strode <rstrode@redhat.com> - 2.22.0-7
8bcab4
- update add_seconds patch to not remove timeouts that aren't
8bcab4
  created anymore
8bcab4
8bcab4
* Mon May 12 2008 Ray Strode <rstrode@redhat.com> - 2.22.0-6
8bcab4
- If the session bus isn't running, don't autolaunch it unless
8bcab4
  we also want to autostart gconfd.
8bcab4
8bcab4
* Thu May 8 2008 Ray Strode <rstrode@redhat.com> - 2.22.0-5
8bcab4
- Tie gconf to session bus.  This means it will exit when the session
8bcab4
  exits and won't leave /tmp/gconf-$USER DoS possibilities
8bcab4
8bcab4
* Sun May 4 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.0-4
8bcab4
- Apply some patches: 
8bcab4
  - Don't spam syslog
8bcab4
  - Handle unsetting mandatory keys without critical warnings 
8bcab4
8bcab4
* Fri May 2 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.0-3
8bcab4
- Add a dbus service to set defaults
8bcab4
8bcab4
* Fri May 2 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.0-2
8bcab4
- Use g_timeout_add_seconds for long timeouts
8bcab4
8bcab4
* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> - 2.22.0-1
8bcab4
- Update to 2.22.0
8bcab4
8bcab4
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.21.90-2
8bcab4
- Autorebuild for GCC 4.3
8bcab4
8bcab4
* Tue Jan 29 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.90-1
8bcab4
- Update to 2.21.90
8bcab4
8bcab4
* Mon Jan 21 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.2-1
8bcab4
- Update to 2.21.2
8bcab4
8bcab4
* Wed Jan  9 2008 Caolan McNamara <caolanm@redhat.com> - 2.21.1-2
8bcab4
- fix .pc so I can build
8bcab4
8bcab4
* Tue Jan  8 2008 Matthias Clasen <mclasen@redhat.com> - 2.21.1-1
8bcab4
- Update to 2.21.1
8bcab4
- Drop upstreamed patches
8bcab4
8bcab4
* Mon Dec  3 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.1-4
8bcab4
- Rebuild against new openldap
8bcab4
8bcab4
* Fri Nov 16 2007 Ray Strode <rstrode@redhat.com> - 2.20.1-3
8bcab4
- Add the system-wide settings location in post to be more
8bcab4
  upgrade friendly (config file is noreplace)
8bcab4
8bcab4
* Sun Nov 3 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.1-2
8bcab4
- Add a location for system-wide settings
8bcab4
8bcab4
* Mon Oct 15 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.1-1
8bcab4
- 2.20.1 (translation and documentation updates)
8bcab4
8bcab4
* Sat Sep 22 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-2
8bcab4
- Require /usr/bin/killall, since gconftool uses it
8bcab4
8bcab4
* Wed Sep 19 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-1
8bcab4
- Update to 2.20.0
8bcab4
8bcab4
* Tue Sep 11 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.1-5
8bcab4
- Some more leak fixes
8bcab4
8bcab4
* Tue Sep 11 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.1-4
8bcab4
- Fix memory leaks
8bcab4
8bcab4
* Thu Aug 23 2007 Adam Jackson <ajax@redhat.com> - 2.19.1-3
8bcab4
- Rebuild for ppc toolchain bug
8bcab4
8bcab4
* Mon Aug  6 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.1-2
8bcab4
- Update license field
8bcab4
8bcab4
* Mon Jun 25 2007 Matthias Clasen <mclasen@redhat.com> - 2.19.1-1
8bcab4
- Update to 2.19.1
8bcab4
8bcab4
* Sun Mar 25 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.0.1-2
8bcab4
- Fix a directory ownership issue.  (#233756)
8bcab4
8bcab4
* Tue Mar 13 2007 Matthias Clasen <mclasen@redhat.com> - 2.18.0.1-1
8bcab4
- Update to 2.18.0.1
8bcab4
8bcab4
* Tue Feb 27 2007 Matthias Clasen <mclasen@redhat.com> - 2.16.1-1
8bcab4
- Update to 2.16.1
8bcab4
8bcab4
* Mon Feb  5 2007 Matthias Clasen <mclasen@redhat.com> - 2.16.0-6
8bcab4
- Split off a -gtk subpackage to reduce dependencies
8bcab4
8bcab4
* Sat Feb  3 2007 Matthias Clasen <mclasen@redhat.com> - 2.16.0-5
8bcab4
- Minor cleanups from package review
8bcab4
8bcab4
* Mon Jan 22 2007 Matthias Clasen <mclasen@redhat.com> - 2.16.0-4
8bcab4
- Own the /etc/gconf/schemas directory
8bcab4
- Misc cleanups
8bcab4
8bcab4
* Sun Oct 29 2006 Ray Strode <rstrode@redhat.com> - 2.16.0-3
8bcab4
- run autoreconf, so that configure gets updated before 
8bcab4
  it generates libtool (so it doesn't just regenerate
8bcab4
  the original, broken libtool) (again bug 203813)
8bcab4
8bcab4
* Tue Oct 24 2006 Ray Strode <rstrode@redhat.com> - 2.16.0-2
8bcab4
- regenerate packaged libtool from RHEL version of libtool so
8bcab4
  that rpath's don't get added to plugin DSOs (bug 203813).
8bcab4
8bcab4
* Fri Oct 20 2006 Matthias Clasen <mclasen@redhat.com> - 2.16.0-1
8bcab4
- 2.16.0
8bcab4
- Update reload patch
8bcab4
8bcab4
* Thu Oct 12 2006 Matthias Clasen <mclasen@redhat.com> - 2.14.0-5
8bcab4
- Require a new enough glib2 to fix upgrade issues (#203813)
8bcab4
8bcab4
* Fri Oct  6 2006 Matthias Clasen <mclasen@redhat.com> - 2.14.0-4
8bcab4
- Fix an issue with error reporting (#202549)
8bcab4
- Don't ship static libraries
8bcab4
- Require pkgconfig for the -devel package
8bcab4
8bcab4
* Mon Sep 18 2006 Matthias Clasen <mclasen@redhat.com> - 2.14.0-3
8bcab4
- Make sure that gconfd dies shortly after the session ends
8bcab4
8bcab4
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.14.0-2.1
8bcab4
- rebuild
8bcab4
8bcab4
* Tue Jun  6 2006 Adam Jackson <ajackson@redhat.com> 2.14.0-2
8bcab4
- Rebuild.
8bcab4
8bcab4
* Sun Mar 19 2006 Ray Strode <rstrode@redhat.com> 2.14.0-1
8bcab4
- Update to 2.14.0
8bcab4
8bcab4
* Mon Mar  6 2006 Ray Strode <rstrode@redhat.com> 2.13.5-5
8bcab4
- Only sync the database once when installing multiple
8bcab4
  schema files.  Patch by Josselin Mouette <joss@debian.org>.
8bcab4
  (upstream bug 333353)
8bcab4
8bcab4
* Wed Feb 15 2006 Christopher Aillon <caillon@redhat.com> 2.13.5-4
8bcab4
- Send SIGTERM instead of SIGHUP to gconfd
8bcab4
8bcab4
* Mon Feb 13 2006 Jesse Keating <jkeating@redhat.com> 2.13.5-3.2.1
8bcab4
- rebump for build order issues during double-long bump
8bcab4
8bcab4
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> 2.13.5-3.2
8bcab4
- bump again for double-long bug on ppc(64)
8bcab4
8bcab4
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> 2.13.5-3.1
8bcab4
- rebuilt for new gcc4.1 snapshot and glibc changes
8bcab4
8bcab4
* Thu Feb  2 2006 Christopher Aillon <caillon@redhat.com> 2.13.5-3
8bcab4
- Use the correct patch ;-)
8bcab4
8bcab4
* Wed Feb  1 2006 Christopher Aillon <caillon@redhat.com> 2.13.5-2
8bcab4
- Add patch from Mandriva to reload GConf2 every time a schema is
8bcab4
  added or removed (solves bug 173869)
8bcab4
8bcab4
* Mon Jan 16 2006 Matthias Clasen <mclasen@redhat.com> 2.13.5-1
8bcab4
- Update to 2.13.5
8bcab4
8bcab4
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
8bcab4
- rebuilt
8bcab4
8bcab4
* Wed Dec  7 2005 Dan Williams <dcbw@redhat.com> 2.12.1-2
8bcab4
- Fix segfault in gconf_unescape_key().  GNOME #323479
8bcab4
8bcab4
* Thu Nov  3 2005 Alexander Larsson <alexl@redhat.com> - 2.12.1-1
8bcab4
- Update to 2.12.1
8bcab4
8bcab4
* Thu Sep  8 2005 Matthias Clasen <mclasen@redhat.com> 2.12.0-1
8bcab4
- Update to 2.12.0
8bcab4
8bcab4
* Tue Aug 16 2005 Ray Strode <rstrode@redhat.com> 2.11.90-2
8bcab4
- rebuild
8bcab4
8bcab4
* Wed Aug 03 2005 Ray Strode <rstrode@redhat.com> 2.11.90-1
8bcab4
- Newer upstream version
8bcab4
8bcab4
* Fri Jul 15 2005 Matthias Clasen <mclasen@redhat.com> 2.11.1-1
8bcab4
- Newer upstream version
8bcab4
- Drop upstreamed patch
8bcab4
8bcab4
* Mon May  9 2005 Mark McLoughlin <markmc@redhat.com> 2.10.0-4
8bcab4
- Update to upstream evoldap.schema which uses GNOME's OID base
8bcab4
  rather than Red Hat's OID.
8bcab4
8bcab4
* Wed Apr 27 2005 Mark McLoughlin <markmc@redhat.com> 2.10.0-3
8bcab4
- Fix undefined symbol in the evoldap backend
8bcab4
8bcab4
* Mon Apr 18 2005 Mark McLoughlin <markmc@redhat.com> - 2.10.0-2
8bcab4
- Add evolution mail accounts backend
8bcab4
8bcab4
* Thu Mar 17 2005 Ray Strode <rstrode@redhat.com> 2.10.0-1
8bcab4
- Update to 2.10.0
8bcab4
8bcab4
* Mon Feb  7 2005 Mark McLoughlin <markmc@redhat.com> 2.9.91-1
8bcab4
- Update to 2.9.91
8bcab4
8bcab4
* Fri Jan 28 2005 Matthias Clasen <mclasen@redhat.com> 2.9.2-1
8bcab4
- Update to 2.9.2
8bcab4
8bcab4
* Wed Jan 19 2005 Mark McLoughlin <markmc@redhat.com> 2.8.1-2
8bcab4
- Backport some fixes from upstream CVS
8bcab4
8bcab4
* Tue Oct 12 2004 Mark McLoughlin <markmc@redhat.com> 2.8.1-1
8bcab4
- Update to 2.8.1
8bcab4
8bcab4
* Tue Sep 21 2004 Mark McLoughlin <markmc@redhat.com> 2.8.0.1-1
8bcab4
- Update to 2.8.0.1
8bcab4
8bcab4
* Mon Aug 30 2004 Mark McLoughlin <markmc@redhat.com> 2.7.92-1
8bcab4
- Update to 2.7.92
8bcab4
8bcab4
* Thu Aug 19 2004 Mark McLoughlin <markmc@redhat.com> 2.7.91.1-1
8bcab4
- Update to 2.7.91.1
8bcab4
8bcab4
* Wed Aug 18 2004 Mark McLoughlin <markmc@redhat.com> 2.7.91-1
8bcab4
- Update to 2.7.91
8bcab4
8bcab4
* Tue Aug  3 2004 Mark McLoughlin <markmc@redhat.com> 2.7.90-1
8bcab4
- Update to 2.7.90
8bcab4
- Add patch to disable merge files for now
8bcab4
8bcab4
* Fri Jul  2 2004 Mark McLoughlin <markmc@redhat.com> 2.6.0-7
8bcab4
- Add patch to fix problem when using merged files. Mainly
8bcab4
  neccessary only to work will with GConf 2.8.
8bcab4
8bcab4
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
8bcab4
- rebuilt
8bcab4
8bcab4
* Fri Apr 16 2004 Colin Walters <walters@redhat.com> - 2.6.0-5
8bcab4
- Apply patch to move temporary directory creation into daemon,
8bcab4
  needed for SELinux GConf policy
8bcab4
8bcab4
* Wed Apr 14 2004 Warren Togami <wtogami@redhat.com> - 2.6.0-4
8bcab4
- #110724 BR gtk2-devel gettext
8bcab4
- #106283 add versioned ORBit2 minimum
8bcab4
- #112863 own /etc/gconf/2/
8bcab4
- really kill *.la
8bcab4
8bcab4
* Mon Apr  5 2004 Mark McLoughlin <markmc@redhat.com> - 2.6.0-3
8bcab4
- Remove the dont-dump-schema-default patch
8bcab4
8bcab4
* Thu Apr  1 2004 Mark McLoughlin <markmc@redhat.com> - 2.6.0-2
8bcab4
- Backport some fixes from HEAD for lockdown/deployment type stuff 
8bcab4
8bcab4
* Tue Mar 23 2004 Alex Larsson <alexl@redhat.com> 2.6.0-1
8bcab4
- update to 2.6.0
8bcab4
8bcab4
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
8bcab4
- rebuilt
8bcab4
8bcab4
* Fri Feb 24 2004 Mark McLoughlin <markmc@redhat.com> 2.5.90-1
8bcab4
- Update to 2.5.90
8bcab4
8bcab4
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
8bcab4
- rebuilt
8bcab4
8bcab4
* Fri Jan 16 2004 Jonathan Blandford <jrb@redhat.com> 2.5.1-1
8bcab4
- new version
8bcab4
8bcab4
* Tue Sep  9 2003 Alexander Larsson <alexl@redhat.com> 2.4.0-1
8bcab4
- 2.4.0
8bcab4
8bcab4
* Thu Aug  7 2003 Jonathan Blandford <jrb@redhat.com>
8bcab4
- begin the move to GNOME-2.4
8bcab4
- locking patch appears to be upstream.  Removing.
8bcab4
8bcab4
* Tue Aug  5 2003 Elliot Lee <sopwith@redhat.com> 2.2.1-3
8bcab4
- Fix libtool
8bcab4
8bcab4
* Mon Jul 14 2003 Havoc Pennington <hp@redhat.com>
8bcab4
- automated rebuild
8bcab4
8bcab4
* Mon Jul  7 2003 Havoc Pennington <hp@redhat.com> 2.2.1-1
8bcab4
- upgrade to 2.2.1
8bcab4
8bcab4
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
8bcab4
- rebuilt
8bcab4
8bcab4
* Tue Apr  8 2003 Matt Wilson <msw@redhat.com> 2.2.0-2
8bcab4
- use system libtool (#88338)
8bcab4
8bcab4
* Tue Feb  4 2003 Havoc Pennington <hp@redhat.com> 2.2.0-1
8bcab4
- 2.2.0
8bcab4
8bcab4
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
8bcab4
- rebuilt
8bcab4
8bcab4
* Sun Jan 12 2003 Havoc Pennington <hp@redhat.com>
8bcab4
- 2.1.90
8bcab4
8bcab4
* Fri Jan 10 2003 Havoc Pennington <hp@redhat.com>
8bcab4
- rebuild as libc seems to have changed or something
8bcab4
8bcab4
* Fri Nov  8 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- rebuild
8bcab4
- standardize spec file name
8bcab4
8bcab4
* Fri Aug 30 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- add GCONF_LOCAL_LOCKS mode, and syslog encoding patch from tagoh
8bcab4
8bcab4
* Wed Aug 21 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- add dialog to offer to delete gconf locks
8bcab4
8bcab4
* Tue Aug  6 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- 1.2.1
8bcab4
- include libexecdir stuff
8bcab4
8bcab4
* Wed Jul 31 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- move .pc fle to -devel package
8bcab4
8bcab4
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
8bcab4
- automated rebuild
8bcab4
8bcab4
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
8bcab4
- automated rebuild
8bcab4
8bcab4
* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- fix warning on gnome-panel install
8bcab4
8bcab4
* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- 1.2.0
8bcab4
- own libdir/GConf/2 directory
8bcab4
- include gtk-doc docs
8bcab4
- don't include static lib for backend modules
8bcab4
8bcab4
* Thu Jun 06 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- rebuild in different environment
8bcab4
8bcab4
* Tue Jun  4 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- 1.1.11
8bcab4
- remove AUTHORS for rpmlint
8bcab4
8bcab4
* Sun May 26 2002 Tim Powers <timp@redhat.com>
8bcab4
- automated rebuild
8bcab4
8bcab4
* Mon May 20 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- rebuild in different environment
8bcab4
8bcab4
* Fri May 17 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- rebuild in different environment
8bcab4
8bcab4
* Thu May  2 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- 1.1.10
8bcab4
8bcab4
* Thu Apr  4 2002 Jeremy Katz <katzj@redhat.com>
8bcab4
- 1.1.9
8bcab4
8bcab4
* Thu Feb 14 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- 1.1.8
8bcab4
- remove .la files
8bcab4
8bcab4
* Wed Jan 30 2002 Owen Taylor <otaylor@redhat.com>
8bcab4
- Version 1.1.6
8bcab4
- Rebuild for dependencies
8bcab4
8bcab4
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
8bcab4
- automated rebuild
8bcab4
8bcab4
* Fri Jan  4 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- 1.1.5.93 snap with important bugfix so gconf actually works
8bcab4
8bcab4
* Thu Jan  3 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- 1.1.5.92 snap with GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
8bcab4
8bcab4
* Thu Jan  3 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- 1.1.5.91 snap with gconf.m4 fix for libgnome
8bcab4
8bcab4
* Wed Jan  2 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- since every other build seems to avoid libglib-1.3.so.11, 
8bcab4
  rebuild and hope
8bcab4
8bcab4
* Wed Jan  2 2002 Havoc Pennington <hp@redhat.com>
8bcab4
- cvs snap 1.1.5.90
8bcab4
8bcab4
* Mon Nov 26 2001 Havoc Pennington <hp@redhat.com>
8bcab4
- GConf 1.1.5, glib 1.3.11
8bcab4
8bcab4
* Sat Oct 27 2001 Havoc Pennington <hp@redhat.com>
8bcab4
- rebuild for glib 1.3.10
8bcab4
8bcab4
* Sun Oct 14 2001 Havoc Pennington <hp@redhat.com>
8bcab4
- 1.1.3
8bcab4
8bcab4
* Fri Oct  5 2001 Havoc Pennington <hp@redhat.com>
8bcab4
- cvs snap, remove bonobo-activation deps
8bcab4
8bcab4
* Fri Sep 21 2001 Havoc Pennington <hp@redhat.com>
8bcab4
- update to new CVS snap, rebuild
8bcab4
8bcab4
* Mon Sep 17 2001 Havoc Pennington <hp@redhat.com>
8bcab4
- create gconf2 rpm based on gconf1, comment out pofiles 
8bcab4
- include .pc files
8bcab4
8bcab4
* Fri Sep 14 2001 Havoc Pennington <hp@redhat.com>
8bcab4
- fix description/summary
8bcab4
8bcab4
* Fri Aug 31 2001 Havoc Pennington <hp@redhat.com>
8bcab4
- Add po files from sources.redhat.com
8bcab4
8bcab4
* Mon Aug 27 2001 Havoc Pennington <hp@redhat.com>
8bcab4
- Add po files from sources.redhat.com
8bcab4
8bcab4
* Wed Aug 15 2001 Havoc Pennington <hp@redhat.com>
8bcab4
- upgrade to 1.0.4 release I just made
8bcab4
- fixes #51223, syslog spew
8bcab4
8bcab4
* Tue Jul 24 2001 Havoc Pennington <hp@redhat.com>
8bcab4
- move gconf-config to devel RPM
8bcab4
8bcab4
* Mon Jul 23 2001 Havoc Pennington <hp@redhat.com>
8bcab4
- how many releases of GConf can I make before it works?
8bcab4
8bcab4
* Sun Jul 22 2001 Havoc Pennington <hp@redhat.com>
8bcab4
- Upgrade to 1.0.2 (which contains only bugfixes that 
8bcab4
  I reviewed and/or wrote myself)
8bcab4
8bcab4
* Wed Jul 18 2001 Havoc Pennington <hp@redhat.com>
8bcab4
- create the /etc/gconf/gconf.xml.defaults directory 
8bcab4
8bcab4
* Fri Jul  6 2001 Alexander Larsson <alexl@redhat.com>
8bcab4
- Install the .la files in the devel package.
8bcab4
8bcab4
* Fri Jul  6 2001 Trond Eivind Glomsrød <teg@redhat.com>
8bcab4
- Use %%{_tmppath}
8bcab4
- Move the .so files to the devel subpackage
8bcab4
- langify
8bcab4
- Move changelog to the end, where it should be :)
8bcab4
- Don't specify (a bad) doc directory
8bcab4
- Don't define name, version and release and use it in the rpm headers later
8bcab4
- Remove "Packager:"
8bcab4
- s/Copyright/License/
8bcab4
8bcab4
* Fri Jun 22 2001 Havoc Pennington <hp@redhat.com>
8bcab4
- add --direct option to gconftool to avoid spawning oafd,
8bcab4
  then commented out gconftool entirely since it checks
8bcab4
  whether gconfd is running and that spawns oafd anyhow.
8bcab4
  oafd simply needs to exit when unused.
8bcab4
8bcab4
* Tue May 15 2001 Havoc Pennington <hp@redhat.com>
8bcab4
- Fix post, pointed out by Bill
8bcab4
8bcab4
* Mon May 14 2001 Havoc Pennington <hp@redhat.com>
8bcab4
- Upgrade to 1.0.1
8bcab4
8bcab4
* Tue Apr 17 2001 Jonathan Blandford <jrb@redhat.com>
8bcab4
- Import to Red Hat build system.
8bcab4
8bcab4
* Sun Jun 11 2000  Eskil Heyn Olsen <deity@eazel.com>
8bcab4
8bcab4
- Created the .spec file