cairomm-vl.spec 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. Summary: Cairomm is the C++ API for the cairo graphics library
  2. Name: cairomm
  3. Version: 1.9.8
  4. Release: 1%{?_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. %{_libdir}/cairomm-1.0/include/*.h
  52. %{_datadir}/devhelp/books/cairomm-1.0/*
  53. %{_datadir}/doc/cairomm-1.0/reference/*
  54. %doc ChangeLog reference
  55. %changelog
  56. * Sun Jan 09 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 1.9.8-1
  57. - new upstream release
  58. * Sat Oct 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 1.9.2-1
  59. - new upstream release
  60. - fix %files
  61. * Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> - 1.8.2-2
  62. - build with rpm-4.8.1-1 for pkg-config file
  63. * Sun Sep 27 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.8.2-1
  64. - new upstream release
  65. * Fri Mar 20 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.8.0-1
  66. - new upstream release
  67. - added BuildRequires: libsigc++-devel
  68. * Sun Sep 21 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.6.4-1
  69. - new upstream release
  70. * Sun May 11 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.6.0-1
  71. - new upstream release
  72. * Sun Jan 13 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.4.6-0vl1
  73. - new upstream release
  74. * Sun Aug 26 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.4.4-0vl13
  75. - new upstream release
  76. * Fri May 11 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.4-1vl2
  77. - rebuild with new environment/toolchain
  78. * Mon Apr 30 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.2.4-1vl1
  79. - initial build for Vine Linux
  80. * Wed Jan 17 2007 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.4-1
  81. - New release
  82. * Sat Oct 14 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.2-1
  83. - New upstream release
  84. * Sun Aug 27 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.0-4
  85. - Bumped release for make tag
  86. * Sun Aug 27 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.0-3
  87. - Bumped release for mass rebuild
  88. * Sun Aug 20 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.0-2
  89. - Bumped release for make tag
  90. * Sun Aug 20 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.2.0-1
  91. - New upstream release
  92. - Updated summary and description
  93. * Thu Aug 3 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 1.1.10-1
  94. - First release for cairo 1.2
  95. - Adjusted cairo dependencies for new version
  96. - Docs were in html, moved to reference/html
  97. * Sun Apr 9 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.6.0-1
  98. - New upstream version should fix the upstream issues like AUTHORS and README
  99. - Added pkgconfig to cairomm BuildRequires and cairomm-devel Requires
  100. - Replaced makeinstall
  101. - Fixed devel package description
  102. - Modified includedir syntax
  103. - docs included via the mv in install and in the devel files as html dir
  104. * Sun Mar 5 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-10
  105. - Removed duplicate Group tag in devel
  106. - Disabled docs till they're fixed upstream
  107. * Sun Mar 5 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-9
  108. - Removed requires since BuildRequires is present
  109. - Cleaned up Source tag
  110. * Fri Feb 24 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-7
  111. - Fixed URL and SOURCE tags
  112. - Fixed header include directory
  113. * Fri Feb 24 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-6
  114. - Fixed URL tag
  115. * Wed Feb 22 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-5
  116. - Remove epoch 'leftovers'
  117. * Wed Feb 22 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-4
  118. - Cleanup for FE
  119. * Wed Feb 22 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-3
  120. - Added pre-release alphatag
  121. * Wed Feb 22 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-2
  122. - Updated to current cairomm CVS
  123. - Added documentation to devel package
  124. * Fri Feb 03 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.5.0-1
  125. - Updated to current cairomm CVS
  126. * Fri Jan 27 2006 Rick L Vinyard Jr <rvinyard@cs.nmsu.edu> - 0.4.0-1
  127. - Initial creation from papyrus.spec.in