365 lines
11 KiB
RPMSpec
365 lines
11 KiB
RPMSpec
%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
|
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from
|
|
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
|
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from
|
|
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
|
|
%endif
|
|
|
|
Summary: GNOME Structured File library
|
|
Name: libgsf
|
|
Version: 1.14.18
|
|
Release: 3%{?dist}
|
|
Group: System Environment/Libraries
|
|
License: LGPLv2
|
|
Source: ftp://ftp.gnome.org/pub/GNOME/sources/%{name}/1.14/%{name}-%{version}.tar.bz2
|
|
URL: http://www.gnome.org/projects/libgsf/
|
|
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
BuildRequires: glib2-devel, perl-XML-Parser
|
|
BuildRequires: libtool, libxml2-devel, glib2-devel, bzip2-devel, gettext
|
|
BuildRequires: libbonobo-devel, pygtk2-devel, intltool, gnome-vfs2-devel
|
|
Requires(pre): GConf2
|
|
Requires(post): GConf2
|
|
Requires(preun): GConf2
|
|
|
|
%description
|
|
A library for reading and writing structured files (e.g. MS OLE and Zip)
|
|
|
|
%package gnome
|
|
Summary: GNOME integration bits for libgsf
|
|
Group: System Environment/Libraries
|
|
Requires: libgsf = %{version}-%{release}
|
|
Requires: gnome-vfs2
|
|
|
|
%description gnome
|
|
Libraries for using libgsf in conjunction with the GNOME applications
|
|
|
|
%package devel
|
|
Summary: Support files necessary to compile applications with libgsf
|
|
Group: Development/Libraries
|
|
Requires: libgsf = %{version}-%{release}, glib2-devel, libxml2-devel
|
|
Requires: pkgconfig
|
|
|
|
%description devel
|
|
Libraries, headers, and support files necessary to compile applications using
|
|
libgsf.
|
|
|
|
%package gnome-devel
|
|
Summary: Support files necessary to compile applications with libgsf and GNOME
|
|
Group: Development/Libraries
|
|
Requires: libgsf-gnome = %{version}-%{release}
|
|
Requires: libgsf-devel = %{version}-%{release}
|
|
|
|
%description gnome-devel
|
|
Libraries, headers, and support files necessary to compile applications using
|
|
libgsf and GNOME libraries
|
|
|
|
%package python
|
|
Summary: Python bindings for libgsf
|
|
Group: Development/Libraries
|
|
|
|
%description python
|
|
Python bindings for libgsf
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure --disable-gtk-doc --disable-static
|
|
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
|
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
%find_lang libgsf
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
|
rm -f $RPM_BUILD_ROOT%{python_sitearch}/gsf/*.la
|
|
|
|
if [ "%{python_sitelib}" != "%{python_sitearch}" ]; then
|
|
mv $RPM_BUILD_ROOT%{python_sitelib}/gsf/* $RPM_BUILD_ROOT%{python_sitearch}/gsf
|
|
rm -r $RPM_BUILD_ROOT%{python_sitelib}/gsf
|
|
fi
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files -f libgsf.lang
|
|
%defattr(-,root,root,-)
|
|
%doc AUTHORS COPYING COPYING.LIB README
|
|
%{_libdir}/libgsf-1.so.*
|
|
|
|
%files gnome
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/libgsf-gnome-1.so.*
|
|
%{_bindir}/gsf-office-thumbnailer
|
|
%{_mandir}/man1/gsf-office-thumbnailer.1.gz
|
|
%{_sysconfdir}/gconf/schemas/gsf-office-thumbnailer.schemas
|
|
|
|
%post gnome
|
|
/sbin/ldconfig
|
|
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
|
gconftool-2 --makefile-install-rule \
|
|
%{_sysconfdir}/gconf/schemas/gsf-office-thumbnailer.schemas > /dev/null
|
|
|
|
%preun gnome
|
|
if [ "$1" -eq 0 ]; then
|
|
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
|
|
gconftool-2 --makefile-uninstall-rule \
|
|
%{_sysconfdir}/gconf/schemas/gsf-office-thumbnailer.schemas > /dev/null
|
|
fi
|
|
|
|
%postun gnome -p /sbin/ldconfig
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%{_bindir}/gsf
|
|
%{_bindir}/gsf-vba-dump
|
|
%{_libdir}/libgsf-1.so
|
|
%{_libdir}/pkgconfig/libgsf-1.pc
|
|
%dir %{_includedir}/libgsf-1
|
|
%{_includedir}/libgsf-1/gsf
|
|
%{_datadir}/gtk-doc/html/gsf
|
|
%{_mandir}/man1/gsf.1.gz
|
|
%{_mandir}/man1/gsf-vba-dump.1.gz
|
|
|
|
%files gnome-devel
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/libgsf-gnome-1.so
|
|
%{_libdir}/pkgconfig/libgsf-gnome-1.pc
|
|
%{_includedir}/libgsf-1/gsf-gnome
|
|
|
|
%files python
|
|
%defattr(-,root,root,-)
|
|
%{python_sitearch}/gsf/
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%changelog
|
|
* Mon Jul 19 2010 Caolán McNamara <caolanm@redhat.com> 1.14.18-3
|
|
- Resolves: rhbz#226023 merge review comments
|
|
|
|
* Sun Jun 13 2010 Caolán McNamara <caolanm@redhat.com> 1.14.18-2
|
|
- include COPYING.LIB
|
|
|
|
* Thu Apr 08 2010 Caolán McNamara <caolanm@redhat.com> 1.14.18-1
|
|
- latest version
|
|
|
|
* Sun Feb 14 2010 Caolán McNamara <caolanm@redhat.com> 1.14.17-1
|
|
- latest version
|
|
|
|
* Fri Oct 16 2009 Caolán McNamara <caolanm@redhat.com> 1.14.16-1
|
|
- latest version
|
|
- drop integrated libgsf.gnome594359.gdk-pixbuf.patch
|
|
|
|
* Mon Sep 07 2009 Caolán McNamara <caolanm@redhat.com> 1.14.15-4
|
|
- Resolves: rhbz#521513 try gdk-pixbuf before ImageMagick convert
|
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.14.15-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
* Fri Jul 10 2009 Caolán McNamara <caolanm@redhat.com> 1.14.15-2
|
|
- clean some rpmlint warnings
|
|
|
|
* Mon Jun 22 2009 Caolán McNamara <caolanm@redhat.com> 1.14.15-1
|
|
- latest version
|
|
|
|
* Tue May 26 2009 Caolán McNamara <caolanm@redhat.com> 1.14.14-1
|
|
- latest version
|
|
|
|
* Thu May 07 2009 Caolán McNamara <caolanm@redhat.com> 1.14.13-1
|
|
- latest version
|
|
|
|
* Wed Apr 29 2009 Caolán McNamara <caolanm@redhat.com> 1.14.12-1
|
|
- latest version, drop integrated libgsf-1.14.11.gcc39015.patch
|
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.14.11-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
* Fri Jan 30 2009 Caolán McNamara <caolanm@redhat.com> 1.14.11-2
|
|
- fix g_enum_register_static use
|
|
|
|
* Wed Jan 07 2009 Caolán McNamara <caolanm@redhat.com> 1.14.11-1
|
|
- latest version
|
|
|
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.14.10-2
|
|
- Rebuild for Python 2.6
|
|
|
|
* Mon Oct 20 2008 Caolán McNamara <caolanm@redhat.com> 1.14.10-1
|
|
- latest version
|
|
|
|
* Tue Sep 23 2008 Matthias Clasen <mclasen@redhat.com> - 1.14.9-2
|
|
- Drop the ImageMagick dependency again, since it causes size problems on
|
|
the live cd
|
|
|
|
* Wed Sep 03 2008 Caolán McNamara <caolanm@redhat.com> 1.14.9-1
|
|
- latest version with gio support
|
|
|
|
* Fri Aug 08 2008 Caolán McNamara <caolanm@redhat.com> 1.14.8-2
|
|
- Resolves: rhbz#458353 gsf-office-thumbnailer doesn't work without ImageMagick's convert.
|
|
Move that into the gnome subpackage
|
|
|
|
* Thu Mar 06 2008 Caolán McNamara <caolanm@redhat.com> 1.14.8-1
|
|
- latest version
|
|
|
|
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.14.7-3
|
|
- Autorebuild for GCC 4.3
|
|
|
|
* Fri Dec 21 2007 Caolán McNamara <caolanm@redhat.com> 1.14.7-2
|
|
- Resolves: rhbz#426436 fix up python x86_64 import gsf
|
|
|
|
* Fri Sep 14 2007 Matthias Clasen <mclasen@redhat.com> 1.14.7-1
|
|
- Update to 1.14.7
|
|
|
|
* Wed Sep 05 2007 Caolán McNamara <caolanm@redhat.com> 1.14.6-1
|
|
- next version
|
|
|
|
* Wed Aug 29 2007 Caolán McNamara <caolanm@redhat.com> 1.14.5-3
|
|
- rebuild
|
|
|
|
* Thu Aug 02 2007 Caolán McNamara <caolanm@redhat.com> 1.14.5-2
|
|
- clarify license: LGPL v2.1 in source headers, no "later"
|
|
|
|
* Thu Jul 12 2007 Caolán McNamara <caolanm@redhat.com> 1.14.5-1
|
|
- next version
|
|
|
|
* Mon Jun 18 2007 Caolán McNamara <caolanm@redhat.com> 1.14.4-1
|
|
- next version
|
|
|
|
* Sun Mar 25 2007 Caolán McNamara <caolanm@redhat.com> 1.14.3-4
|
|
- Resolves rhbz#233862 unowned directory fix from Michael Schwendt
|
|
|
|
* Fri Feb 09 2007 Caolán McNamara <caolanm@redhat.com> 1.14.3-3
|
|
- some spec cleanups
|
|
|
|
* Thu Dec 7 2006 Jeremy Katz <katzj@redhat.com> - 1.14.3-2
|
|
- rebuild for python 2.5
|
|
|
|
* Thu Nov 09 2006 Caolán McNamara <caolanm@redhat.com> 1.14.3-1
|
|
- bump to 1.14.3
|
|
|
|
* Wed Nov 1 2006 Dan Williams <dcbw@redhat.com> - 1.14.2-2
|
|
- Split to remove gnome-vfs2 dependency on core sub-packages
|
|
|
|
* Mon Oct 09 2006 Caolán McNamara <caolanm@redhat.com> - 1.14.2-1
|
|
- bump to 1.14.2
|
|
|
|
* Fri Jul 14 2006 Bill Nottingham <notting@redhat.com> - 1.14.1-6
|
|
- gnome-vfs2-devel no longer requires libbonobo-devel; add it as a buildreq
|
|
|
|
* Wed Jul 13 2006 Jesse Keating <jkeating@redhat.com> - 1.14.1-5
|
|
- rebuild
|
|
- add missing br gettext
|
|
|
|
* Mon May 29 2006 Caolán McNamara <caolanm@redhat.com> 1.14.1-4
|
|
- rh#193417# Add BuildRequires perl-XML-Parser
|
|
|
|
* Tue May 23 2006 Caolán McNamara <caolanm@redhat.com> 1.14.1-3
|
|
- rh#192707# disable rebuilding of gtk-doc so as to allow multi-arch devel
|
|
|
|
* Wed May 10 2006 Matthias Clasen <mclasen@redhat.com> 1.14.1-2
|
|
- Update to 1.14.1
|
|
|
|
* Mon Mar 20 2006 Caolán McNamara <caolanm@redhat.com> 1.14.0-1
|
|
- next version
|
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.13.3-2.2.1
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.13.3-2.2
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
- rebuilt
|
|
|
|
* Mon Dec 5 2005 Caolán McNamara <caolanm@redhat.com> 1.13.3-2
|
|
- rh#172062# Obsolete extras libgsf113
|
|
|
|
* Fri Dec 2 2005 Matthias Clasen <mclasen@redhat.com> 1.13.3-1
|
|
- Update to 1.13.3
|
|
|
|
* Tue Sep 20 2005 Caolán McNamara <caolanm@redhat.com> 1.12.3-1
|
|
- bump to next version
|
|
- add manpage for gsf-office-thumbnailer
|
|
|
|
* Fri Aug 26 2005 Caolán McNamara <caolanm@redhat.com> 1.12.2-1
|
|
- bump to latest version
|
|
|
|
* Wed Jun 15 2005 Caolán McNamara <caolanm@redhat.com> 1.12.1-1
|
|
- bump to latest version
|
|
|
|
* Wed Mar 2 2005 Caolán McNamara <caolanm@redhat.com> 1.12.0-1
|
|
- bump to latest version
|
|
- clean spec
|
|
|
|
* Wed Mar 2 2005 Caolán McNamara <caolanm@redhat.com> 1.11.1-2
|
|
- rebuild with gcc4
|
|
|
|
* Thu Dec 16 2004 Caolán McNamara <caolanm@redhat.com> 1.11.1-1
|
|
- upgrade to 1.11.1
|
|
|
|
* Tue Aug 31 2004 Caolán McNamara <caolanm@redhat.com> 1.10.1-1
|
|
- upgrade to 1.10.1
|
|
|
|
* Wed Aug 18 2004 Caolán McNamara <caolanm@redhat.com> 1.10.0-1
|
|
- upgrade to 1.10.0
|
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
- rebuilt
|
|
|
|
* Thu May 6 2004 Dams <anvil[AT]livna.org> 1.9.0-2
|
|
- -devel now requires libgsf=version-release
|
|
- Added smp_mflags
|
|
- Fixed double included .so files
|
|
|
|
* Wed May 5 2004 Caolán McNamara <caolanm@redhat.com> 1.9.0-1
|
|
* upgrade to 1.9.0 to get crash fixes
|
|
|
|
* Sun Apr 11 2004 Warren Togami <wtogami@redhat.com> 1.8.2-3
|
|
- BR libtool libxml2-devel gnome-vfs2-devel bzip2-devel
|
|
- -devel req glib2-devel libxml2-devel gnome-vfs2-devel
|
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
- rebuilt
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
- rebuilt
|
|
|
|
* Mon Jan 12 2004 Jonathan Blandford <jrb@redhat.com> 1.8.2-1
|
|
- make $includedir/libgsf-1 owned by -devel
|
|
|
|
* Fri Sep 19 2003 Havoc Pennington <hp@redhat.com> 1.8.2-1
|
|
- 1.8.2
|
|
|
|
* Wed Aug 13 2003 Jonathan Blandford <jrb@redhat.com>
|
|
- rebuild
|
|
|
|
* Wed Aug 6 2003 Elliot Lee <sopwith@redhat.com> 1.8.1-5
|
|
- Fix libtool
|
|
|
|
* Sat Jul 12 2003 Jeremy Katz <katzj@redhat.com> 1.8.1-4
|
|
- use system libtool so that lib64 library deps are correct
|
|
|
|
* Thu Jul 10 2003 Jeremy Katz <katzj@redhat.com> 1.8.1-3
|
|
- forcibly disable gtk-doc (openjade is broken on s390)
|
|
|
|
* Mon Jul 7 2003 Jeremy Katz <katzj@redhat.com> 1.8.1-2
|
|
- ldconfig in %%post/%%postun
|
|
|
|
* Sun Jul 6 2003 Jeremy Katz <katzj@redhat.com> 1.8.1-1
|
|
- use standard macros
|
|
- build for Red Hat Linux
|
|
|
|
* Tue May 13 2003 Rui M. Seabra <rms@407.org>
|
|
- fix spec to reflect current stat of the build
|
|
|
|
* Tue Jun 18 2002 Rui M. Seabra <rms@407.org>
|
|
- set permission correctly
|
|
- fix common mistake of Copyright flag into License flag.
|
|
|
|
* Thu May 23 2002 Jody Goldberg <jody@gnome.org>
|
|
- Initial version
|