freeglut-vl.spec 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. Name: freeglut
  2. Summary: A freely licensed alternative to the GLUT library
  3. Summary(ja): 自由なライセンスで提供される GLUT ライブラリ
  4. Version: 2.6.0
  5. Release: 2%{?_dist_release}
  6. URL: http://freeglut.sourceforge.net
  7. License: MIT
  8. Group: System Environment/Libraries
  9. Source0: http://sourceforge.net/projects/freeglut/files/%{name}-%{version}.tar.gz
  10. # patch from Fedora
  11. Patch0: freeglut-2.6.0-fixld.patch
  12. Patch1: freeglut-2.6.0-noxwarn.patch
  13. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  14. BuildRequires: pkgconfig
  15. BuildRequires: libXext-devel, libXxf86vm-devel, mesa-libGLU-devel
  16. BuildRequires: libXi-devel
  17. # The virtual Provides below is present so that this freeglut package is a
  18. # drop in binary replacement for "glut" which will satisfy rpm dependancies
  19. # properly. The Obsoletes tag is required in order for any pre-existing
  20. # "glut" package to be removed and replaced with freeglut when upgrading to
  21. # freeglut. Note: This package will NOT co-exist with the glut package.
  22. Provides: glut = 3.7
  23. Obsoletes: glut <= 3.7
  24. Requires(post): /sbin/ldconfig
  25. Requires(postun): /sbin/ldconfig
  26. %description
  27. freeglut is a completely open source alternative to the OpenGL Utility Toolkit
  28. (GLUT) library with an OSI approved free software license. GLUT was originally
  29. written by Mark Kilgard to support the sample programs in the second edition
  30. OpenGL 'RedBook'. Since then, GLUT has been used in a wide variety of practical
  31. applications because it is simple, universally available and highly portable.
  32. freeglut allows the user to create and manage windows containing OpenGL
  33. contexts on a wide range of platforms and also read the mouse, keyboard and
  34. joystick functions.
  35. %package devel
  36. Summary: freeglut developmental libraries and header files
  37. Summary(ja): freeglut の開発用ファイル
  38. Group: Development/Libraries
  39. Requires: %{name} = %{version}-%{release}
  40. Requires: mesa-libGL-devel
  41. Requires: mesa-libGLU-devel
  42. Provides: glut-devel = 3.7
  43. Obsoletes: glut-devel <= 3.7
  44. %description devel
  45. Developmental libraries and header files required for developing or compiling
  46. software which links to the freeglut library, which is an open source
  47. alternative to the popular GLUT library, with an OSI approved free software
  48. license.
  49. %prep
  50. %setup -q
  51. %patch0 -p1 -b .fixld
  52. %patch1 -p1 -b .noxwarn
  53. %build
  54. %configure --disable-static --disable-warnings
  55. make
  56. %install
  57. rm -rf $RPM_BUILD_ROOT
  58. make install DESTDIR=$RPM_BUILD_ROOT
  59. chmod 644 doc/*.{html,png}
  60. rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
  61. %clean
  62. rm -rf $RPM_BUILD_ROOT
  63. %post -p /sbin/ldconfig
  64. %postun -p /sbin/ldconfig
  65. %files
  66. %defattr(-,root,root,-)
  67. %doc AUTHORS ChangeLog COPYING INSTALL NEWS README TODO doc/*.png doc/*.html
  68. # don't include contents of doc/ directory as it is mostly obsolete
  69. %{_libdir}/libglut*.so.*
  70. %files devel
  71. %defattr(-,root,root,-)
  72. %{_includedir}/GL/*.h
  73. #{_libdir}/libglut*.a
  74. #{_libdir}/libglut*.la
  75. %{_libdir}/libglut.so
  76. %changelog
  77. * Sun Mar 27 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.0-2
  78. - add BuildRequires: libXi-devel
  79. - add Patch0 (freeglut-2.6.0-fixld.patch)
  80. - add Patch1 (freeglut-2.6.0-noxwarn.patch)
  81. * Sun Mar 20 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.6.0-1
  82. - new upstream release
  83. - dropt static libraries
  84. * Fri Sep 05 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0-6
  85. - rebuild with mesa-7.1
  86. * Thu May 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0-5
  87. - new versioning policy
  88. * Fri Jan 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0-4vl2
  89. - build with xorg-x11-7.3 and mesa-7.0.2
  90. * Sun Sep 03 2006 NAKAMURA Kenta <kenta@vinelinux.org> 2.4.0-4vl1
  91. - imported from Fedora Core 5
  92. * Tue Feb 21 2006 Karsten Hopp <karsten@redhat.de> 2.4.0-4
  93. - BuildRequires: libGLU-devel
  94. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.4.0-3.2
  95. - bump again for double-long bug on ppc(64)
  96. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.4.0-3.1
  97. - rebuilt for new gcc4.1 snapshot and glibc changes
  98. * Tue Jan 31 2006 Mike A. Harris <mharris@redhat.com> 2.4.0-3
  99. - Added "Requires: libGL-devel libGLU-devel" to fix bug (#179464)
  100. - Change file based GL header build dep to BuildRequires: libGL-devel
  101. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com> 2.4.0-2.1
  102. - rebuilt
  103. * Fri Nov 18 2005 Bill Nottingham <notting@redhat.com> 2.4.0-2
  104. - Remove references to obsolete /usr/X11R6 paths
  105. * Fri Sep 23 2005 Mike A. Harris <mharris@redhat.com> 2.4.0-1
  106. - Updated to freeglut-2.4.0
  107. - Removed unneeded patches:
  108. - freeglut-2.2.0-gcc4-fix-invalid-lvalue-in-assignment-cvsps-392-393.patch
  109. - Use "-p /sbin/ldconfig" in post/postun scripts instead of a separate script.
  110. * Sat Mar 5 2005 Mike A. Harris <mharris@redhat.com> 2.2.0-16
  111. - Added freeglut-2.2.0-gcc4-fix-invalid-lvalue-in-assignment-cvsps-392-393.patch
  112. to fix "invalid lvalue in assignment" bugs reported by gcc 4
  113. - Added "-Wall" to CFLAGS in specfile.
  114. * Thu Mar 3 2005 Mike A. Harris <mharris@redhat.com> 2.2.0-15
  115. - Rebuild with gcc 4 for FC4 development
  116. * Sat Aug 14 2004 Mike A. Harris <mharris@redhat.com> 2.2.0-14
  117. - Add post and postun scripts that call ldconfig (#128413)
  118. * Fri Jun 18 2004 Mike A. Harris <mharris@redhat.com> 2.2.0-13
  119. - Rebuilt with gcc 3.4 for FC3 development
  120. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com> 2.2.0-12
  121. - rebuilt
  122. * Thu Mar 18 2004 Mike A. Harris <mharris@redhat.com> 2.2.0-11
  123. - Updated "Obsoletes: glut" to be "Obsoletes: glut <= 3.7" and
  124. "Obsoletes: glut-devel" to be "Obsoletes: glut-devel <= 3.7" as per
  125. suggestion from Matthias Saou in comment #14 of bug (#107228)
  126. * Sun Mar 7 2004 Mike A. Harris <mharris@redhat.com>
  127. - Made "glut-devel" virtual provides be "glut-devel = 3.7"
  128. * Sun Mar 7 2004 Mike A. Harris <mharris@redhat.com> 2.2.0-10
  129. - Initial Red Hat packaging created by taking the ATrpms src.rpm package from
  130. http://tinyurl.com/2goog as suggested in bugzilla bug (#107228)
  131. - Bumped the Release field to "10" so our package is newer when people
  132. upgrade to it, as requested in bug (#107228)
  133. - Removed redundant version/release macros from top of specfile
  134. - Versioned buildroot directory
  135. - Add --enable-warnings arg to ./configure script
  136. - Add HTML documentation to main package
  137. - Made "glut" virtual provides be "glut = 3.7"
  138. - Do not include *.la files
  139. * Sat Feb 21 2004 Axel Thimm <Axel.Thimm@physik.fu-berlin.de> 2.2.0
  140. - Added glut compatibility provides.
  141. - Moved *.so to devel package.
  142. * Tue Jan 13 2004 Andy Piper <andy.piper@freeuk.com>
  143. - updated to freeglut-2.2.0
  144. - fixed library install
  145. * Fri Nov 14 2003 Andy Piper <andy.piper@freeuk.com>
  146. - updated for freeglut-2.0.1
  147. * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
  148. - rebuilt
  149. * Tue Jun 3 2003 Mike A. Harris <mharris@www.linux.org.uk> 1.3-0.20020125.3
  150. - Add BuildRequires on /sbin/ldconfig
  151. - Change ldconfig call to explicit /sbin/ldconfig
  152. * Sun Jun 1 2003 Mike A. Harris <mharris@www.linux.org.uk> 1.3-0.20020125.2
  153. - Oddly, when I build this on my workstation, it only builds static libs, but
  154. when I build it in the buildsystem it builds shared and static libs. Must
  155. be a twilight zone thing going on. Add shared libs to file lists.
  156. * Sat May 31 2003 Mike A. Harris <mharris@www.linux.org.uk> 1.3-0.20020125.1
  157. - Added -L/usr/X11R6/%{_lib} configure script invocation and CFLAGS so lib64
  158. is treated properly on x86_64/ppc64/s390x architectures
  159. * Fri May 30 2003 Mike A. Harris <mharris@www.linux.org.uk> 1.3-0.20020125.0
  160. - Initial build.