cairomm-vl.spec 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. Summary: Cairomm is the C++ API for the cairo graphics library
  2. Name: cairomm
  3. Version: 1.8.2
  4. Release: 2%{?_dist_release}
  5. URL: http://www.cairographics.org
  6. License: LGPL
  7. Group: System Environment/Libraries
  8. Source: http://www.cairographics.org/releases/%{name}-%{version}.tar.gz
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  10. BuildRequires: cairo-devel >= 1.6.4
  11. BuildRequires: libsigc++-devel
  12. BuildRequires: pkgconfig
  13. %description
  14. Cairomm is the C++ API for the cairo graphics library. It offers all the power
  15. of cairo with an interface familiar to C++ developers, including use of the
  16. Standard Template Library where it makes sense.
  17. %package devel
  18. Summary: Headers for developing programs that will use %{name}
  19. Group: Development/Libraries
  20. Requires: %{name} = %{version}-%{release}
  21. Requires: cairo-devel >= 1.6.4
  22. Requires: libsigc++-devel
  23. Requires: pkgconfig
  24. %description devel
  25. This package contains the libraries and header files needed for
  26. developing %{name} applications.
  27. %prep
  28. %setup -q
  29. %build
  30. %configure --enable-static=no --enable-docs=no
  31. make %{?_smp_mflags}
  32. %install
  33. rm -rf $RPM_BUILD_ROOT
  34. make DESTDIR=$RPM_BUILD_ROOT install
  35. find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
  36. rm -rf reference
  37. cp -pr docs/reference .
  38. %clean
  39. rm -rf $RPM_BUILD_ROOT
  40. %post -p /sbin/ldconfig
  41. %postun -p /sbin/ldconfig
  42. %files
  43. %defattr(-,root,root,-)
  44. %doc AUTHORS COPYING README NEWS
  45. %{_libdir}/lib*.so.*
  46. %files devel
  47. %defattr(-,root,root,-)
  48. %{_libdir}/*.so
  49. %{_libdir}/pkgconfig/*
  50. %{_includedir}/cairomm-1.0/
  51. %doc ChangeLog reference
  52. %changelog
  53. * Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> - 1.8.2-2
  54. - build with rpm-4.8.1-1 for pkg-config file
  55. * Sun Sep 27 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.8.2-1
  56. - new upstream release
  57. * Fri Mar 20 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.8.0-1
  58. - new upstream release
  59. - added BuildRequires: libsigc++-devel
  60. * Sun Sep 21 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.6.4-1
  61. - new upstream release
  62. * Sun May 11 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.6.0-1
  63. - new upstream release
  64. * Sun Jan 13 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.4.6-0vl1
  65. - new upstream release
  66. * Sun Aug 26 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.4.4-0vl13
  67. - new upstream release
  68. * Fri May 11 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.4-1vl2
  69. - rebuild with new environment/toolchain
  70. * Mon Apr 30 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.2.4-1vl1
  71. - initial build for Vine Linux
  72. * Wed Jan 17 2007 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.4-1
  73. - New release
  74. * Sat Oct 14 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.2-1
  75. - New upstream release
  76. * Sun Aug 27 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.0-4
  77. - Bumped release for make tag
  78. * Sun Aug 27 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.0-3
  79. - Bumped release for mass rebuild
  80. * Sun Aug 20 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.0-2
  81. - Bumped release for make tag
  82. * Sun Aug 20 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.0-1
  83. - New upstream release
  84. - Updated summary and description
  85. * Thu Aug 3 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.1.10-1
  86. - First release for cairo 1.2
  87. - Adjusted cairo dependencies for new version
  88. - Docs were in html, moved to reference/html
  89. * Sun Apr 9 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.6.0-1
  90. - New upstream version should fix the upstream issues like AUTHORS and README
  91. - Added pkgconfig to cairomm BuildRequires and cairomm-devel Requires
  92. - Replaced makeinstall
  93. - Fixed devel package description
  94. - Modified includedir syntax
  95. - docs included via the mv in install and in the devel files as html dir
  96. * Sun Mar 5 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-10
  97. - Removed duplicate Group tag in devel
  98. - Disabled docs till they're fixed upstream
  99. * Sun Mar 5 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-9
  100. - Removed requires since BuildRequires is present
  101. - Cleaned up Source tag
  102. * Fri Feb 24 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-7
  103. - Fixed URL and SOURCE tags
  104. - Fixed header include directory
  105. * Fri Feb 24 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-6
  106. - Fixed URL tag
  107. * Wed Feb 22 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-5
  108. - Remove epoch 'leftovers'
  109. * Wed Feb 22 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-4
  110. - Cleanup for FE
  111. * Wed Feb 22 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-3
  112. - Added pre-release alphatag
  113. * Wed Feb 22 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-2
  114. - Updated to current cairomm CVS
  115. - Added documentation to devel package
  116. * Fri Feb 03 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-1
  117. - Updated to current cairomm CVS
  118. * Fri Jan 27 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.4.0-1
  119. - Initial creation from papyrus.spec.in