gconfmm-vl.spec 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. Summary: A C++ wrapper for GConf2
  2. Name: gconfmm
  3. Version: 2.28.2
  4. Release: 1%{?_dist_release}
  5. License: LGPL
  6. Group: System Environment/Libraries
  7. Source: ftp://download.sourceforge/net/gtkmm/%{name}-%{version}.tar.bz2
  8. URL: http://gtkmm.sourceforge.net
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  10. BuildRequires: glibmm-devel >= 2.6.4
  11. BuildRequires: GConf2-devel >= 2.4.0
  12. BuildRequires: gtkmm2-devel >= 2.4.0
  13. %description
  14. This package provides a C++ interface for GConf2. It is a subpackage
  15. of the GTKmm project. The interface provides a convenient interface
  16. for C++ programmers to create Gnome GUIs with GTK+'s flexible
  17. object-oriented framework.
  18. %package devel
  19. Summary: Headers for developing programs that will use gconfmm
  20. Group: Development/Libraries
  21. Requires: %{name} = %{version}-%{release}
  22. Requires: glibmm-devel >= 2.6.4
  23. Requires: GConf2-devel >= 2.4.0
  24. %description devel
  25. This package contains the headers that programmers will need to
  26. develop applications which will use gconfmm, part of GTKmm, the C++
  27. interface to the GTK+.
  28. %prep
  29. %setup -q
  30. %build
  31. %configure --disable-static --enable-shared
  32. make %{?_smp_mflags}
  33. %install
  34. rm -rf $RPM_BUILD_ROOT
  35. %makeinstall
  36. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  37. %post -p /sbin/ldconfig
  38. %postun -p /sbin/ldconfig
  39. %clean
  40. rm -rf $RPM_BUILD_ROOT
  41. %files
  42. %defattr(-, root, root)
  43. %doc AUTHORS COPYING ChangeLog INSTALL NEWS README
  44. %{_libdir}/*.so.*
  45. %files devel
  46. %{_includedir}/gconfmm-2.6
  47. %{_libdir}/gconfmm-2.6
  48. %{_libdir}/*.so
  49. %{_libdir}/pkgconfig/*.pc
  50. %{_datadir}/devhelp/books/gconfmm-2.6/gconfmm-2.6.devhelp2
  51. %doc %{_datadir}/doc/gconfmm-2.6
  52. %changelog
  53. * Sat Jul 24 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.2-1
  54. - new upstream release
  55. - fix %files
  56. * Sun Mar 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.0-1
  57. - new upstream release
  58. - add BuildRequires: gtkmm2-devel
  59. * Sat Oct 4 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.24.0-1
  60. - new upstream release
  61. * Sun Sep 07 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.22.0-1
  62. - new upstream release
  63. * Fri May 11 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.18.0-0vl2
  64. - rebuilt with new toolchains
  65. * Mon Apr 30 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.18.0-0vl1
  66. - new upstream release
  67. * Sat Nov 4 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.16.0-1vl1
  68. - initial build for Vine Linux
  69. * Wed Sep 24 2003 Eric Bourque <ericb@computer.org>
  70. - Initial build.