Field3D-vl.spec 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. Name: Field3D
  2. Version: 1.4.3
  3. Release: 2%{?_dist_release}
  4. Summary: Library for storing voxel data
  5. Summary(ja): ボクセルデータを蓄積するためのライブラリ
  6. License: BSD
  7. Group: System Environment/Libraries
  8. URL: https://sites.google.com/site/field3d/
  9. # The source archive is created on the fly at github.com:
  10. # https://github.com/imageworks/Field3D/archive/v1.4.0.tar.gz
  11. Source0: %{name}-%{version}.tar.gz
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  13. BuildRequires: cmake doxygen
  14. BuildRequires: qt4-devel
  15. BuildRequires: hdf5-devel
  16. BuildRequires: ilmbase-devel
  17. BuildRequires: libboost-devel
  18. BuildRequires: libboost-program-options
  19. BuildRequires: libboost-regex
  20. BuildRequires: libboost-system
  21. BuildRequires: libboost-thread
  22. Requires: hdf5
  23. %description
  24. Field3D is an open source library for storing voxel data. It provides C++
  25. classes that handle in-memory storage and a file format based on HDF5 that
  26. allows the C++ objects to be written to and read from disk.
  27. %package devel
  28. Summary: Development files for %{name}
  29. Summary(ja): %{name} の開発用ファイル
  30. Group: Development/Libraries
  31. Requires: %{name} = %{version}-%{release}
  32. %description devel
  33. Development headers and documentation for %{name}.
  34. # Need devel-docs subpackage.
  35. %prep
  36. %setup -q
  37. %build
  38. rm -rf build && mkdir build && pushd build
  39. %cmake -DINSTALL_DOCS=OFF \
  40. ../
  41. make %{?_smp_mflags}
  42. popd
  43. %install
  44. rm -rf $RPM_BUILD_ROOT
  45. pushd build
  46. make install DESTDIR=$RPM_BUILD_ROOT
  47. popd
  48. install -D -m 0644 man/f3dinfo.1 $RPM_BUILD_ROOT%{_mandir}/man1/f3dinfo.1
  49. %check
  50. pushd build
  51. LD_LIBRARY_PATH=`pwd` ./unitTest
  52. popd
  53. %clean
  54. rm -rf $RPM_BUILD_ROOT
  55. %post -p /sbin/ldconfig
  56. %postun -p /sbin/ldconfig
  57. %files
  58. %doc CHANGES COPYING README
  59. %{_bindir}/f3dinfo
  60. %{_libdir}/libField3D.so.*
  61. %{_mandir}/man1/f3dinfo.1.gz
  62. %files devel
  63. %doc docs/html/
  64. %{_includedir}/Field3D/
  65. %{_libdir}/libField3D.so
  66. %changelog
  67. * Fri Jan 30 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.4.3-2
  68. - added Group tag
  69. - added %%clean section
  70. * Mon Jan 12 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 1.4.3-1
  71. - initial build for Vine Linux
  72. * Wed Jan 07 2015 Orion Poplawski <orion@cora.nwra.com> - 1.4.3-3
  73. - Rebuild for hdf5 1.8.4
  74. * Wed Nov 26 2014 Rex Dieter <rdieter@fedoraproject.org> 1.4.3-2
  75. - rebuild (ilmbase), add matching/missing popd's
  76. * Fri Sep 5 2014 Richard Shaw <hobbes1069@gmail.com> - 1.4.3-1
  77. - Update to latest upstream release.
  78. * Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-19
  79. - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
  80. * Tue Jun 10 2014 Orion Poplawski <orion@cora.nwra.com> - 1.3.2-18
  81. - Rebuild for hdf 1.8.13
  82. * Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-17
  83. - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
  84. * Thu May 22 2014 Petr Machata <pmachata@redhat.com> - 1.3.2-16
  85. - Rebuild for boost 1.55.0
  86. * Fri Dec 27 2013 Orion Poplawski <orion@cora.nwra.com> - 1.3.2-15
  87. - Rebuild for hdf5 1.8.12
  88. * Wed Nov 27 2013 Rex Dieter <rdieter@fedoraproject.org> 1.3.2-14
  89. - rebuild (ilmbase)
  90. * Sun Sep 08 2013 Rex Dieter <rdieter@fedoraproject.org> 1.3.2-13
  91. - rebuild (ilmbase)
  92. * Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-12
  93. - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
  94. * Sat Jul 27 2013 pmachata@redhat.com - 1.3.2-11
  95. - Rebuild for boost 1.54.0
  96. * Thu May 16 2013 Orion Poplawski <orion@cora.nwra.com> - 1.3.2-10
  97. - Rebuild for hdf5 1.8.11
  98. * Sun Feb 10 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.3.2-9
  99. - Rebuild for Boost-1.53.0
  100. * Sat Feb 09 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.3.2-8
  101. - Rebuild for Boost-1.53.0
  102. * Mon Dec 3 2012 Orion Poplawski <orion@cora.nwra.com> - 1.3.2-7
  103. - Rebuild for hdf5 1.8.10
  104. * Wed Aug 8 2012 David Malcolm <dmalcolm@redhat.com> - 1.3.2-6
  105. - rebuild against boost-1.50
  106. * Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.2-4
  107. - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
  108. * Tue May 15 2012 Orion Poplawski <orion@cora.nwra.com> - 1.3.2-3
  109. - Rebuild for hdf5 1.8.9
  110. - Explicitly require the version of hdf5 built with
  111. * Fri Mar 23 2012 Richard Shaw <hobbes1069@gmail.com> - 1.3.2-2
  112. - Bump EVR for oops with F17 package to make sure rawhide package is newer.
  113. * Tue Feb 28 2012 Richard Shaw <hobbes1069@gmail.com> - 1.3.2-1
  114. - Update to latest release.
  115. * Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-4
  116. - Rebuilt for c++ ABI breakage
  117. * Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-3
  118. - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
  119. * Mon Jan 09 2012 Richard Shaw <hobbes1069@gmail.com> - 1.2.1-2
  120. - Fixed building under GCC 4.7.0.
  121. * Sat Nov 12 2011 Richard Shaw <hobbes1069@gmail.com> - 1.2.1-1
  122. - Initial release.