libglvnd/libglvnd.spec

109 lines
2.7 KiB
RPMSpec
Raw Normal View History

2016-01-06 09:38:24 +00:00
%global snapshot git20160106
2015-09-02 16:42:54 +00:00
2015-02-06 17:54:37 +00:00
Name: libglvnd
2015-02-11 15:42:34 +00:00
Version: 0.0.0
2016-01-06 09:38:24 +00:00
Release: 6%{?snapshot}%{?dist}
2015-02-06 17:54:37 +00:00
Summary: The GL Vendor-Neutral Dispatch library
2015-11-21 15:18:35 +00:00
License: MIT and BSD and LGPLv2+
2015-02-06 17:54:37 +00:00
URL: https://github.com/NVIDIA/libglvnd
2015-09-02 16:42:54 +00:00
# git clone && ./autogen.sh && make dist && mv
Source0: libglvnd-%{version}%{?snapshot}.tar.gz
2015-02-06 17:54:37 +00:00
2016-01-06 09:38:24 +00:00
Patch0: 0001-Don-t-hardcode-the-minimal-xorg-version.patch
Patch1: 0002-Enable-x11glvnd-by-default-on-more-recent-xorg-relea.patch
2015-11-21 15:18:35 +00:00
#This library only target few architectures use case
ExclusiveArch: x86_64 i686 armv7hl
2015-02-23 09:54:24 +00:00
2015-02-23 09:53:49 +00:00
BuildRequires: libxml2-python
2015-02-06 17:54:37 +00:00
BuildRequires: pkgconfig(xorg-server)
2015-02-11 15:42:34 +00:00
BuildRequires: pkgconfig(x11)
BuildRequires: pkgconfig(xv)
2015-02-06 17:54:37 +00:00
%description
This is a work-in-progress implementation of the vendor-neutral dispatch layer
for arbitrating OpenGL API calls between multiple vendors on a per-screen
basis, as described by Andy Ritger's OpenGL ABI proposal [1].
Currently, only the GLX window-system API and OpenGL are supported, but in the
future this library may support EGL and OpenGL ES as well.
2015-02-11 15:42:34 +00:00
%package -n xorg-x11-glvnd
2015-02-06 17:54:37 +00:00
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
2015-02-11 15:42:34 +00:00
%description -n xorg-x11-glvnd
2015-11-21 15:47:34 +00:00
The xorg-x11-glvnd package contains xorg module for the GL Vendor Neutral
Dispatch library
2015-02-06 17:54:37 +00:00
%prep
%setup -q
2016-01-06 09:38:24 +00:00
%patch0 -p1
%patch1 -p1
2015-02-06 17:54:37 +00:00
%build
2015-02-11 15:42:34 +00:00
%configure \
--disable-static \
--enable-dt-auxiliary
make %{?_smp_mflags} V=1
2015-02-06 17:54:37 +00:00
%install
%make_install
2015-02-11 15:42:34 +00:00
find %{buildroot} -name '*.la' -exec rm -f {} ';'
# Avoid conflict with mesa-libGL for now
mkdir -p %{buildroot}%{_libdir}/%{name}
for l in libGL libGLESv2 ; do
mv %{buildroot}%{_libdir}/${l}.so* \
%{buildroot}%{_libdir}/%{name}
done
# Fedora do not provides libGLESv1_CM
rm -rf %{buildroot}%{_libdir}/libGLESv1_CM*
2015-02-06 17:54:37 +00:00
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
2015-11-21 15:18:35 +00:00
%doc README.md
2015-02-11 15:42:34 +00:00
%{_libdir}/*.so*
%dir %{_libdir}/%{name}
2015-11-21 16:20:45 +00:00
%{_libdir}/%{name}/lib*GL*.so*
2015-02-06 17:54:37 +00:00
2015-02-11 15:42:34 +00:00
%files -n xorg-x11-glvnd
%{_libdir}/xorg/modules/extensions/*.so*
2015-02-06 17:54:37 +00:00
%changelog
2016-01-06 09:38:24 +00:00
* Wed Jan 06 2016 Nicolas Chauvet <kwizart@gmail.com> - 0.0.0-6git20160106
- Update to 20160106 snapshot
2015-11-21 15:38:24 +00:00
* Sat Nov 21 2015 Nicolas Chauvet <kwizart@gmail.com> - 0.0.0-5git20151121
- Update to 20151121 snapshot
- Avoid conflicts with mesa-libGL{,ES}
- Disable libGLESv1_CM
2015-11-21 15:38:24 +00:00
2015-11-21 15:18:35 +00:00
* Tue Nov 10 2015 Nicolas Chauvet <kwizart@gmail.com> - 0.0.0-4git20151110
- Update to today snapshot
- Fix license
2015-09-02 16:42:54 +00:00
* Tue Sep 01 2015 Nicolas Chauvet <kwizart@gmail.com> - 0.0.0-3git20150901
- Update to snapshot 20150901
* Fri Aug 07 2015 Nicolas Chauvet <kwizart@gmail.com> - 0.0.0-2
- Update to today snapshoot
2015-02-11 15:42:34 +00:00
* Fri Feb 6 2015 Nicolas Chauvet <kwizart@gmail.com> - 0.0.0-1
- Initial spec file