12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- Name: gnome-vfsmm
- Summary: C++ wrapper for gnome-vfs
- Version: 2.24.0
- Release: 1%{?_dist_release}
- License: LGPL
- Group: System Environment/Libraries
- URL: http://gtkmm.sourceforge.net/
- Source0: ftp://ftp.sourceforge.net/pub/sourceforge/gtkmm/%{name}-%{version}.tar.bz2
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: glibmm-devel >= 2.4.0
- BuildRequires: gnome-vfs2-devel >= 2.8.1
- %description
- This package is part of the gnomemm project and provides a C++ interface for
- gnome-vfs.
- %package devel
- Summary: Headers for developing programs that will use %{name}.
- Group: Development/Libraries
- Requires: %{name} = %{version}
- Requires: glibmm-devel >= 2.4.0
- Requires: gnome-vfs2-devel >= 2.8.1
- %description devel
- This package contains the static libraries and header files needed for
- developing applications with %{name}.
- %prep
- %setup -q -n gnome-vfsmm-%{version}
- %build
- %configure
- make %{?_smp_mflags}
- %install
- rm -rf %{buildroot}
- %makeinstall
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %clean
- rm -rf %{buildroot}
- %files
- %defattr(-, root, root)
- %doc AUTHORS ChangeLog COPYING NEWS README TODO
- %{_libdir}/*.so.*
- %files devel
- %defattr(-, root, root)
- %{_includedir}/%{name}-2.6
- %{_libdir}/*.so
- %exclude %{_libdir}/*.la
- %{_libdir}/%{name}-2.6
- %{_libdir}/pkgconfig/*.pc
- %changelog
- * Sat Oct 4 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.24.0-1vl5
- - new upstream release
- * Fri Sep 19 2008 Shu KONNO <owa@bg.wakwak.com> 2.18.0-1vl5
- - applied new versioning policy
- - excluded *.la
- * Fri May 11 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.18.0-0vl2
- - rebuilt with new toolchains
- * Mon Apr 30 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.18.0-0vl1
- - new upstream release
- * Fri Nov 3 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.16.0-1vl1
- - initial build for Vine Linux
- * Wed Jul 22 2003 Gerald Henriksen <ghenriks@rogers.com>
- - Initial release
|