2020-08-04 13:57:47 +00:00
|
|
|
%global __cmake_in_source_build 1
|
2007-03-18 20:13:49 +00:00
|
|
|
Summary: A freely licensed alternative to the GLUT library
|
|
|
|
Name: freeglut
|
2019-10-04 13:26:01 +00:00
|
|
|
Version: 3.2.1
|
2021-03-13 00:20:33 +00:00
|
|
|
Release: 8%{?dist}
|
2007-03-18 20:13:49 +00:00
|
|
|
URL: http://freeglut.sourceforge.net
|
2018-05-01 18:15:16 +00:00
|
|
|
Source0: https://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
|
2007-12-11 11:23:49 +00:00
|
|
|
# For the manpages
|
2018-05-01 18:15:16 +00:00
|
|
|
Source1: https://downloads.sourceforge.net/openglut/openglut-0.6.3-doc.tar.gz
|
2020-01-31 15:47:22 +00:00
|
|
|
Patch0: common.patch
|
2007-03-18 20:13:49 +00:00
|
|
|
License: MIT
|
2012-08-03 10:46:16 +00:00
|
|
|
|
2018-07-09 17:06:44 +00:00
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: gcc-c++
|
2015-03-12 10:28:11 +00:00
|
|
|
BuildRequires: cmake
|
2021-03-13 00:20:33 +00:00
|
|
|
BuildRequires: pkgconfig libGLU-devel libXext-devel
|
2009-04-21 13:11:47 +00:00
|
|
|
BuildRequires: libXi-devel libICE-devel
|
2020-12-18 22:52:31 +00:00
|
|
|
BuildRequires: make
|
2006-07-26 02:18:26 +00:00
|
|
|
# The virtual Provides below is present so that this freeglut package is a
|
|
|
|
# drop in binary replacement for "glut" which will satisfy rpm dependancies
|
|
|
|
# properly. The Obsoletes tag is required in order for any pre-existing
|
|
|
|
# "glut" package to be removed and replaced with freeglut when upgrading to
|
|
|
|
# freeglut. Note: This package will NOT co-exist with the glut package.
|
2007-03-18 20:13:49 +00:00
|
|
|
Provides: glut = 3.7
|
2008-03-17 19:48:12 +00:00
|
|
|
Obsoletes: glut < 3.7
|
2006-07-26 02:18:26 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
freeglut is a completely open source alternative to the OpenGL Utility Toolkit
|
|
|
|
(GLUT) library with an OSI approved free software license. GLUT was originally
|
|
|
|
written by Mark Kilgard to support the sample programs in the second edition
|
|
|
|
OpenGL 'RedBook'. Since then, GLUT has been used in a wide variety of practical
|
|
|
|
applications because it is simple, universally available and highly portable.
|
|
|
|
|
|
|
|
freeglut allows the user to create and manage windows containing OpenGL
|
|
|
|
contexts on a wide range of platforms and also read the mouse, keyboard and
|
|
|
|
joystick functions.
|
|
|
|
|
|
|
|
|
2007-03-18 20:13:49 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Freeglut developmental libraries and header files
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: libGL-devel libGLU-devel
|
|
|
|
Provides: glut-devel = 3.7
|
2008-03-17 19:48:12 +00:00
|
|
|
Obsoletes: glut-devel < 3.7
|
2006-07-26 02:18:26 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
Developmental libraries and header files required for developing or compiling
|
|
|
|
software which links to the freeglut library, which is an open source
|
|
|
|
alternative to the popular GLUT library, with an OSI approved free software
|
|
|
|
license.
|
|
|
|
|
2007-03-18 20:13:49 +00:00
|
|
|
|
2006-07-26 02:18:26 +00:00
|
|
|
%prep
|
2007-12-11 11:23:49 +00:00
|
|
|
%setup -q -a 1
|
2020-01-31 15:47:22 +00:00
|
|
|
%patch0 -p0
|
2006-07-26 02:18:26 +00:00
|
|
|
|
|
|
|
%build
|
2015-03-12 10:28:11 +00:00
|
|
|
%{cmake} -DFREEGLUT_BUILD_STATIC_LIBS=OFF .
|
2007-03-18 20:13:49 +00:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
2006-07-26 02:18:26 +00:00
|
|
|
|
|
|
|
%install
|
2007-03-18 20:13:49 +00:00
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
2006-07-26 02:18:26 +00:00
|
|
|
|
2007-12-11 11:23:49 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man3
|
|
|
|
install -p -m 644 doc/man/*.3 $RPM_BUILD_ROOT/%{_mandir}/man3
|
|
|
|
|
2007-03-18 20:13:49 +00:00
|
|
|
|
2019-01-22 17:38:58 +00:00
|
|
|
%ldconfig_scriptlets
|
2006-07-26 02:18:26 +00:00
|
|
|
|
2007-03-18 20:13:49 +00:00
|
|
|
|
2006-07-26 02:18:26 +00:00
|
|
|
%files
|
2015-03-12 10:28:11 +00:00
|
|
|
%doc AUTHORS ChangeLog COPYING README doc/*.png doc/*.html
|
2006-07-26 02:18:26 +00:00
|
|
|
# don't include contents of doc/ directory as it is mostly obsolete
|
2018-05-01 18:15:16 +00:00
|
|
|
%{_libdir}/libglut.so.3*
|
2006-07-26 02:18:26 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_includedir}/GL/*.h
|
|
|
|
%{_libdir}/libglut.so
|
2019-10-04 13:26:01 +00:00
|
|
|
%{_libdir}/pkgconfig/glut.pc
|
2007-12-11 11:23:49 +00:00
|
|
|
%{_mandir}/man3/*
|
2019-10-04 13:26:01 +00:00
|
|
|
%{_libdir}/cmake/FreeGLUT/*
|
2007-03-18 20:13:49 +00:00
|
|
|
|
2006-07-26 02:18:26 +00:00
|
|
|
%changelog
|
2021-03-13 00:20:33 +00:00
|
|
|
* Fri Mar 12 2021 Adam Jackson <ajax@redhat.com> - 3.2.1-8
|
|
|
|
- Drop legacy BuildRequires: libXxf86vm-devel
|
|
|
|
|
2021-01-26 05:54:18 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.1-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-08-04 13:57:47 +00:00
|
|
|
* Tue Aug 04 2020 Gwyn Ciesla <gwync@protonmail.com> - 3.2.1-6
|
|
|
|
- Fix FTBFS.
|
|
|
|
|
2020-08-01 01:04:06 +00:00
|
|
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.1-5
|
|
|
|
- Second attempt - Rebuilt for
|
|
|
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-27 17:48:30 +00:00
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-01-31 15:47:22 +00:00
|
|
|
* Fri Jan 31 2020 Gwyn Ciesla <gwync@protonmail.com> - 3.2.1-3
|
|
|
|
- Fix FTBFS
|
|
|
|
|
2020-01-28 18:57:55 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-10-04 13:26:01 +00:00
|
|
|
* Mon Sep 30 2019 Gwyn Ciesla <gwync@protonmail.com> - 3.2.1-1
|
|
|
|
- 3.2.1
|
|
|
|
|
|
|
|
* Tue Sep 17 2019 Gwyn Ciesla <gwync@protonmail.com> - 3.2.0-1
|
|
|
|
- 3.2.0
|
|
|
|
|
2019-07-25 00:59:56 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.0-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-01-31 20:08:09 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.0-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-13 00:49:30 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.0-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-05-01 18:15:16 +00:00
|
|
|
* Tue May 01 2018 Adam Jackson <ajax@redhat.com> - 3.0.0-8
|
|
|
|
- HTTPS URLs
|
|
|
|
- Pin soname to libglut.so.3 in the %%files glob
|
|
|
|
|
2018-02-07 10:07:07 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.0-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-08-02 20:46:08 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.0-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 08:43:43 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-10 09:59:46 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-02-03 20:45:53 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-06-17 06:40:37 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-03-12 10:28:11 +00:00
|
|
|
* Tue Mar 10 2015 Tomas Smetana <tsmetana@redhat.com> 3.0.0-1
|
|
|
|
- New upstream version
|
|
|
|
|
2014-08-16 13:06:59 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 12:46:50 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-01-23 13:51:48 +00:00
|
|
|
* Thu Jan 23 2014 Tomas Smetana <tsmetana@redhat.com> - 2.8.1-3
|
|
|
|
- fix #1017551: don't crash on manipulating active menus
|
|
|
|
|
2013-08-03 11:52:26 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-04-08 11:57:51 +00:00
|
|
|
* Mon Apr 08 2013 Tomas Smetana <tsmetana@redhat.com> - 2.8.1-1
|
|
|
|
- fix #948696: new upstream bugfix release, drop patches
|
|
|
|
- fix #925363: aarch64 support
|
|
|
|
|
2013-02-13 21:58:32 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-08-28 14:12:35 +00:00
|
|
|
* Mon Aug 27 2012 Tomas Smetana <tsmetana@redhat.com> - 2.8.0-7
|
|
|
|
- fix mapping from XInput to the X button mask in the bug #831336 patch
|
|
|
|
|
2012-08-15 09:23:22 +00:00
|
|
|
* Wed Aug 15 2012 Tomas Smetana <tsmetana@redhat.com> - 2.8.0-6
|
|
|
|
- fix #831336: fix broken menus; patch backported from upstream SVN revision
|
|
|
|
1375 by Manfred Spraul
|
|
|
|
|
2012-08-03 10:46:16 +00:00
|
|
|
* Fri Aug 3 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 2.8.0-5
|
|
|
|
- Add patch to fix FTBFS
|
|
|
|
|
2012-07-19 03:10:23 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-13 02:42:22 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2012-01-03 10:14:48 +00:00
|
|
|
* Tue Jan 03 2012 Tomas Smetana <tsmetana@redhat.com> - 2.8.0-2
|
|
|
|
- fix patch0 for the new release
|
|
|
|
|
2012-01-03 09:52:19 +00:00
|
|
|
* Tue Jan 03 2012 Tomas Smetana <tsmetana@redhat.com> - 2.8.0-1
|
|
|
|
- New upstream release
|
|
|
|
|
2011-02-08 21:33:36 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.0-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-05-31 09:03:07 +00:00
|
|
|
* Mon May 31 2010 Tomas Smetana <tsmetana@redhat.com> 2.6.0-5
|
|
|
|
- fix #575885, #575885 - suppress the "Unknown X event type" warnings
|
|
|
|
|
|
|
|
* Fri May 7 2010 Josh Boyer <jwboyer@gmail.com> 2.6.0-4
|
|
|
|
- Add -lm to fix ppc build
|
|
|
|
|
2010-02-15 16:24:05 +00:00
|
|
|
* Mon Feb 15 2010 Tomas Smetana <tsmetana@redhat.com> 2.6.0-3
|
|
|
|
- the patch for #565178 was incomplete
|
|
|
|
|
2010-02-15 16:05:06 +00:00
|
|
|
* Mon Feb 15 2010 Tomas Smetana <tsmetana@redhat.com> 2.6.0-2
|
|
|
|
- fix #565178: fix building of the examples
|
|
|
|
|
2009-11-28 10:21:05 +00:00
|
|
|
* Sat Nov 28 2009 Tomas Smetana <tsmetana@redhat.com> 2.6.0-1
|
|
|
|
- update to 2.6.0 final
|
|
|
|
|
2009-07-24 23:09:01 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.0-0.2.rc1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-04-21 13:03:20 +00:00
|
|
|
* Tue Apr 21 2009 Hans de Goede <hdegoede@redhat.com> 2.6.0-0.1.rc1
|
|
|
|
- New upstream release (yes really!) 2.6.0-rc1
|
|
|
|
|
2009-02-24 18:20:49 +00:00
|
|
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.0-16
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-01-22 07:42:06 +00:00
|
|
|
* Thu Jan 22 2009 Tomas Smetana <tsmetana@redhat.com> - 2.4.0-15
|
|
|
|
- fix #481049 - rebuild to pick up %%{_isa} provides
|
|
|
|
|
2008-03-17 19:48:12 +00:00
|
|
|
* Mon Mar 17 2008 Jesse Keating <jkeating@redhat.com> - 2.4.0-14
|
|
|
|
- Prevent package from obsoleting itself with matching Provides/Obsoletes.
|
|
|
|
|
2008-02-19 08:23:05 +00:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.4.0-13
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2007-12-11 11:23:49 +00:00
|
|
|
* Tue Dec 11 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 2.4.0-12
|
|
|
|
- Add manpages to the -devel package (from openglut, bz 409651)
|
|
|
|
|
2007-03-18 20:13:49 +00:00
|
|
|
* Sun Mar 18 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 2.4.0-11
|
|
|
|
- Minor specfile cleanups
|
|
|
|
- Add a patch from gentoo to stop flightgear from crashing
|
|
|
|
|
2006-08-28 04:20:04 +00:00
|
|
|
* Mon Aug 27 2006 Michael J. Knox <michael[AT]knox.net.nz> - 2.4.0-10
|
|
|
|
- Rebuild for FC6
|
|
|
|
|
2006-07-26 02:18:26 +00:00
|
|
|
* Wed Jul 26 2006 Michael J. Knox <michael[AT]knox.net.nz> - 2.4.0-9
|
|
|
|
- disblaed static build
|
|
|
|
- dropped unneeded requires
|
|
|
|
- dropped the glib cruff passed to make
|
|
|
|
|
|
|
|
* Wed Jul 26 2006 Michael J. Knox <michael[AT]knox.net.nz> - 2.4.0-8
|
|
|
|
- clean ups to shut rpmlint up
|
|
|
|
|
|
|
|
* Fri Jul 21 2006 Mike A. Harris <mharris@redhat.com> - 2.4.0-7.fc6
|
|
|
|
- Use {?dist} tag in release field
|
|
|
|
- Update BuildRoot to comply with Fedora packaging guidelines
|
|
|
|
|
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> 2.4.0-6
|
|
|
|
- rebuild
|
|
|
|
- Try to build w/out glib
|
|
|
|
|
|
|
|
* Fri May 19 2006 Mike A. Harris <mharris@redhat.com> 2.4.0-5
|
|
|
|
- Added "BuildRequires: libXext-devel, libXxf86vm-devel" for (#192255)
|
|
|
|
|
|
|
|
* Tue Feb 21 2006 Karsten Hopp <karsten@redhat.de> 2.4.0-4
|
|
|
|
- BuildRequires: libGLU-devel
|
|
|
|
|
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> 2.4.0-3.2
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> 2.4.0-3.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
|
|
|
* Tue Jan 31 2006 Mike A. Harris <mharris@redhat.com> 2.4.0-3
|
|
|
|
- Added "Requires: libGL-devel libGLU-devel" to fix bug (#179464)
|
|
|
|
- Change file based GL header build dep to BuildRequires: libGL-devel
|
|
|
|
|
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com> 2.4.0-2.1
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Fri Nov 18 2005 Bill Nottingham <notting@redhat.com> 2.4.0-2
|
|
|
|
- Remove references to obsolete /usr/X11R6 paths
|
|
|
|
|
|
|
|
* Fri Sep 23 2005 Mike A. Harris <mharris@redhat.com> 2.4.0-1
|
|
|
|
- Updated to freeglut-2.4.0
|
|
|
|
- Removed unneeded patches:
|
|
|
|
- freeglut-2.2.0-gcc4-fix-invalid-lvalue-in-assignment-cvsps-392-393.patch
|
|
|
|
- Use "-p /sbin/ldconfig" in post/postun scripts instead of a separate script.
|
|
|
|
|
|
|
|
* Sat Mar 05 2005 Mike A. Harris <mharris@redhat.com> 2.2.0-16
|
|
|
|
- Added freeglut-2.2.0-gcc4-fix-invalid-lvalue-in-assignment-cvsps-392-393.patch
|
|
|
|
to fix "invalid lvalue in assignment" bugs reported by gcc 4
|
|
|
|
- Added "-Wall" to CFLAGS in specfile.
|
|
|
|
|
|
|
|
* Thu Mar 03 2005 Mike A. Harris <mharris@redhat.com> 2.2.0-15
|
|
|
|
- Rebuild with gcc 4 for FC4 development
|
|
|
|
|
|
|
|
* Sat Aug 14 2004 Mike A. Harris <mharris@redhat.com> 2.2.0-14
|
|
|
|
- Add post and postun scripts that call ldconfig (#128413)
|
|
|
|
|
|
|
|
* Fri Jun 18 2004 Mike A. Harris <mharris@redhat.com> 2.2.0-13
|
|
|
|
- Rebuilt with gcc 3.4 for FC3 development
|
|
|
|
|
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com> 2.2.0-12
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Thu Mar 18 2004 Mike A. Harris <mharris@redhat.com> 2.2.0-11
|
|
|
|
- Updated "Obsoletes: glut" to be "Obsoletes: glut <= 3.7" and
|
|
|
|
"Obsoletes: glut-devel" to be "Obsoletes: glut-devel <= 3.7" as per
|
|
|
|
suggestion from Matthias Saou in comment #14 of bug (#107228)
|
|
|
|
|
|
|
|
* Sun Mar 07 2004 Mike A. Harris <mharris@redhat.com>
|
|
|
|
- Made "glut-devel" virtual provides be "glut-devel = 3.7"
|
|
|
|
|
|
|
|
* Sun Mar 07 2004 Mike A. Harris <mharris@redhat.com> 2.2.0-10
|
|
|
|
- Initial Red Hat packaging created by taking the ATrpms src.rpm package from
|
|
|
|
http://tinyurl.com/2goog as suggested in bugzilla bug (#107228)
|
|
|
|
- Bumped the Release field to "10" so our package is newer when people
|
|
|
|
upgrade to it, as requested in bug (#107228)
|
|
|
|
- Removed redundant version/release macros from top of specfile
|
|
|
|
- Versioned buildroot directory
|
|
|
|
- Add --enable-warnings arg to ./configure script
|
|
|
|
- Add HTML documentation to main package
|
|
|
|
- Made "glut" virtual provides be "glut = 3.7"
|
|
|
|
- Do not include *.la files
|
|
|
|
|
|
|
|
* Sat Feb 21 2004 Axel Thimm <Axel.Thimm@physik.fu-berlin.de> 2.2.0
|
|
|
|
- Added glut compatibility provides.
|
|
|
|
- Moved *.so to devel package.
|
|
|
|
|
|
|
|
* Tue Jan 13 2004 Andy Piper <andy.piper@freeuk.com>
|
|
|
|
- updated to freeglut-2.2.0
|
|
|
|
- fixed library install
|
|
|
|
|
|
|
|
* Fri Nov 14 2003 Andy Piper <andy.piper@freeuk.com>
|
|
|
|
- updated for freeglut-2.0.1
|
|
|
|
|
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Tue Jun 03 2003 Mike A. Harris <mharris@www.linux.org.uk> 1.3-0.20020125.3
|
|
|
|
- Add BuildRequires on /sbin/ldconfig
|
|
|
|
- Change ldconfig call to explicit /sbin/ldconfig
|
|
|
|
|
|
|
|
* Sun Jun 01 2003 Mike A. Harris <mharris@www.linux.org.uk> 1.3-0.20020125.2
|
|
|
|
- Oddly, when I build this on my workstation, it only builds static libs, but
|
|
|
|
when I build it in the buildsystem it builds shared and static libs. Must
|
|
|
|
be a twilight zone thing going on. Add shared libs to file lists.
|
|
|
|
|
|
|
|
* Sat May 31 2003 Mike A. Harris <mharris@www.linux.org.uk> 1.3-0.20020125.1
|
2007-03-18 20:13:49 +00:00
|
|
|
- Added -L/usr/X11R6/%%{_lib} configure script invocation and CFLAGS so lib64
|
2006-07-26 02:18:26 +00:00
|
|
|
is treated properly on x86_64/ppc64/s390x architectures
|
|
|
|
|
|
|
|
* Fri May 30 2003 Mike A. Harris <mharris@www.linux.org.uk> 1.3-0.20020125.0
|
|
|
|
- Initial build.
|