RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/mesa-libGLw#9b6e43f7e94777fed18f4af3b7cecc29729acb80
This commit is contained in:
parent
b1fc72c7da
commit
208566ca01
3
.gitignore
vendored
3
.gitignore
vendored
@ -0,0 +1,3 @@
|
||||
MesaLib-6.5.1.tar.bz2
|
||||
/glw-8.0.0.tar.bz2
|
||||
/glw-b060a0782f09ebe4f60c8fd4564c11ba043c331f.tar.bz2
|
||||
12
mesa-6.5-build-config.patch
Normal file
12
mesa-6.5-build-config.patch
Normal file
@ -0,0 +1,12 @@
|
||||
--- ./configs/linux.build-config 2006-04-03 18:13:19.000000000 -0400
|
||||
+++ ./configs/linux 2006-04-03 18:13:47.000000000 -0400
|
||||
@@ -8,6 +8,9 @@
|
||||
CC = gcc
|
||||
CXX = g++
|
||||
|
||||
+MKDEP = gcc -M -MG
|
||||
+MKDEP_OPTIONS = -MF depend
|
||||
+
|
||||
OPT_FLAGS = -O3 -g
|
||||
PIC_FLAGS = -fPIC
|
||||
|
||||
26
mesa-6.5.1-libGLw.patch
Normal file
26
mesa-6.5.1-libGLw.patch
Normal file
@ -0,0 +1,26 @@
|
||||
--- Mesa-6.5.1/configs/default.motif 2006-09-28 13:04:05.000000000 +0200
|
||||
+++ Mesa-6.5.1/configs/default 2006-09-28 13:04:37.000000000 +0200
|
||||
@@ -55,12 +55,12 @@
|
||||
|
||||
# GLw widget sources (Append "GLwMDrawA.c" here and add -lXm to GLW_LIB_DEPS in
|
||||
# order to build the Motif widget too)
|
||||
-GLW_SOURCES = GLwDrawA.c
|
||||
+GLW_SOURCES = GLwDrawA.c GLwMDrawA.c
|
||||
|
||||
|
||||
# Directories to build
|
||||
LIB_DIR = lib
|
||||
-SRC_DIRS = mesa glu glut/glx glw
|
||||
+SRC_DIRS = glw
|
||||
GLU_DIRS = sgi
|
||||
DRIVER_DIRS = x11 osmesa
|
||||
# Which subdirs under $(TOP)/progs/ to enter:
|
||||
@@ -73,7 +73,7 @@
|
||||
OSMESA_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB)
|
||||
GLU_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -lm
|
||||
GLUT_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) $(EXTRA_LIB_PATH) -lX11 -lXmu -lXt -lXi -lm
|
||||
-GLW_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) $(EXTRA_LIB_PATH) -lXt -lX11
|
||||
+GLW_LIB_DEPS = -l$(GL_LIB) -lXt -lX11
|
||||
APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -lm
|
||||
|
||||
|
||||
193
mesa-libGLw.spec
Normal file
193
mesa-libGLw.spec
Normal file
@ -0,0 +1,193 @@
|
||||
Summary: Xt / Motif OpenGL widgets
|
||||
Name: mesa-libGLw
|
||||
Version: 8.0.0
|
||||
Release: 20%{?dist}
|
||||
License: MIT
|
||||
URL: http://www.mesa3d.org
|
||||
# archived project
|
||||
%global gitver b060a0782f09ebe4f60c8fd4564c11ba043c331f
|
||||
Source0: https://gitlab.freedesktop.org/mesa/glw/-/archive/%{gitver}/glw-%{gitver}.tar.bz2
|
||||
|
||||
BuildRequires: autoconf automake libtool
|
||||
BuildRequires: gcc
|
||||
BuildRequires: libXt-devel
|
||||
BuildRequires: libGL-devel
|
||||
%if 0%{?rhel}
|
||||
BuildRequires: openmotif-devel
|
||||
%else
|
||||
BuildRequires: motif-devel
|
||||
%endif
|
||||
|
||||
Provides: libGLw
|
||||
|
||||
%description
|
||||
Mesa libGLw runtime library.
|
||||
|
||||
%package devel
|
||||
Summary: Mesa libGLw development package
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: libGL-devel
|
||||
%if 0%{?rhel}
|
||||
Requires: openmotif-devel
|
||||
%else
|
||||
Requires: motif-devel
|
||||
%endif
|
||||
Provides: libGLw-devel
|
||||
|
||||
%description devel
|
||||
Mesa libGLw development package.
|
||||
|
||||
%prep
|
||||
%setup -q -n glw-%{gitver}
|
||||
|
||||
%build
|
||||
autoreconf -f -i -v
|
||||
%configure --disable-static --enable-motif
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
find $RPM_BUILD_ROOT -name \*.la | xargs rm -f
|
||||
|
||||
%check
|
||||
|
||||
%ldconfig_post
|
||||
%ldconfig_postun
|
||||
|
||||
%files
|
||||
%doc README
|
||||
%{_libdir}/libGLw.so.1
|
||||
%{_libdir}/libGLw.so.1.0.0
|
||||
|
||||
%files devel
|
||||
%{_libdir}/libGLw.so
|
||||
%{_libdir}/pkgconfig/glw.pc
|
||||
%{_includedir}/GL/GLwDrawA.h
|
||||
%{_includedir}/GL/GLwDrawAP.h
|
||||
%{_includedir}/GL/GLwMDrawA.h
|
||||
%{_includedir}/GL/GLwMDrawAP.h
|
||||
|
||||
%changelog
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-20
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Mon May 20 2019 Adam Jackson <ajax@redhat.com> - 8.0.0-17
|
||||
- Update to git snapshot of the archived state
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Jul 05 2018 Adam Jackson <ajax@redhat.com> - 8.0.0-14
|
||||
- Drop useless %%defattr
|
||||
|
||||
* Fri Jun 29 2018 Adam Jackson <ajax@redhat.com> - 8.0.0-13
|
||||
- Use ldconfig scriptlet macros
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Thu Oct 01 2015 Jon Ciesla <limburgher@gmail.com> - 8.0.0-7
|
||||
- Move from lesstif to motif.
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.0.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.0.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.0.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.0.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.0.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Mon Sep 10 2012 Adam Jackson <ajax@redhat.com> 8.0.0-1
|
||||
- Switch to upstream's split-out glw release
|
||||
|
||||
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.5.1-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Mon Jul 09 2012 Bill Nottingham - 6.5.1-12
|
||||
- fix prior macros
|
||||
|
||||
* Thu Jul 05 2012 Bill Nottingham - 6.5.1-11
|
||||
- add conditional macros for openmotif/lesstif
|
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.5.1-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.5.1-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.5.1-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.5.1-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Wed May 21 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 6.5.1-6
|
||||
- fix license tag
|
||||
|
||||
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 6.5.1-5
|
||||
- Autorebuild for GCC 4.3
|
||||
|
||||
* Fri Oct 12 2007 Matthias Clasen <mclasen@redhat.com> - 6.5.1-4
|
||||
- Fix spec file syntax issues (#330331)
|
||||
|
||||
* Tue Aug 21 2007 Adam Jackson <ajax@redhat.com> - 6.5.1-3
|
||||
- Rebuild for build id
|
||||
|
||||
* Wed Jan 24 2007 Adam Jackson <ajax@redhat.com> 6.5.1-2
|
||||
- Minor spec fixes (#210798)
|
||||
|
||||
* Fri Sep 29 2006 Adam Jackson <ajackson@redhat.com> 6.5.1-1
|
||||
- lib64 fixes and cleanups from Patrice Dumas (#188974)
|
||||
|
||||
* Tue Sep 19 2006 Adam Jackson <ajackson@redhat.com> 6.5.1-0.2
|
||||
- Use 6.5.1 release tarball. Drop patches and build scripts that are no
|
||||
longer necessary.
|
||||
|
||||
* Tue Sep 19 2006 Adam Jackson <ajackson@redhat.com> 6.5.1-0.1
|
||||
- Move revision back up to 6.5.1 for upgrade path from FC5. Misc other
|
||||
spec fixes as per bug #188974 comment 30.
|
||||
|
||||
* Mon Sep 18 2006 Adam Jackson <ajackson@redhat.com> 1.0-4
|
||||
- Rename back to mesa-libGLw as per bug #188974.
|
||||
|
||||
* Wed Aug 30 2006 Tom "spot" Callaway <tcallawa@redhat.com> 1.0-3
|
||||
- Fix package for x86_64
|
||||
|
||||
* Tue Aug 29 2006 Tom "spot" Callaway <tcallawa@redhat.com> 1.0-2
|
||||
- Fix package to depend on lesstif-devel
|
||||
- -devel now Requires libGL-devel
|
||||
- use name var in -devel Requires
|
||||
- actually use RPM_OPT_FLAGS
|
||||
- symlink devel libs, not copy (except for .*.*.*)
|
||||
|
||||
* Fri Aug 7 2006 Adam Jackson <ajackson@redhat.com> 1.0-1
|
||||
- Split libGLw out from Mesa.
|
||||
Loading…
Reference in New Issue
Block a user