123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- %define tarball glamor-egl
- Summary: X.org glamor library
- Name: xorg-x11-glamor
- Version: 0.6.0
- Release: 1%{?_dist_release}
- License: MIT
- Group: System Environment/Libraries
- URL: http://www.freedesktop.org/wiki/Software/Glamor
- ExcludeArch: s390 s390x
- Source0: ftp://ftp.x.org/pub/individual/driver/%{tarball}-%{version}.tar.bz2
- Patch0: glamor-0.5-speed-up-lines.patch
- BuildRequires: pkgconfig autoconf automake libtool
- BuildRequires: xorg-x11-server-sdk
- BuildRequires: mesa-libgbm-devel mesa-libEGL-devel
- Requires: xorg-x11-server-Xorg
- Requires: xorg-x11-server-Xorg
- Vendor: Project Vine
- Distribution: Vine Linux
- %description
- glamor provides xorg-x11 acceleration using the OpenGL driver.
- %package devel
- Summary: X.org glamor renderer development package
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- %description devel
- X.org glamor development package
- %prep
- %setup -q -n %{tarball}-%{version}
- %patch0 -p1 -b .fixlines
- %build
- autoreconf --install
- %configure \
- --disable-static
- make %{?_smp_mflags}
- %install
- # core libs and headers, but not drivers.
- make install DESTDIR=$RPM_BUILD_ROOT
- find $RPM_BUILD_ROOT -type f -name '*.la' -delete
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files
- %defattr(-,root,root,-)
- %doc README
- %doc COPYING
- %{_libdir}/libglamor.so.*
- %{_libdir}/xorg/modules/libglamoregl.so
- %{_datadir}/X11/xorg.conf.d/glamor.conf
- %files devel
- %defattr(-,root,root,-)
- %{_includedir}/xorg/glamor.h
- %{_libdir}/pkgconfig/glamor.pc
- %{_libdir}/pkgconfig/glamor-egl.pc
- %{_libdir}/libglamor.so
- %changelog
- * Wed Apr 23 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.0-1
- - initial build for Vine Linux
- * Fri Jan 17 2014 Dave Airlie <airlied@redhat.com> 0.5.1-8.
- - update to latest upstream - fix memory leak and possible icons
- * Wed Jan 15 2014 Adam Jackson <ajax@redhat.com>
- - Exclude from s390 where it's useless (since there's no Xorg)
- * Wed Jan 15 2014 Dave Airlie <airlied@redhat.com> 0.5.1-7.20140115gitfb4d046c
- - rebase + fix lines slowdown
- * Tue Dec 17 2013 Adam Jackson <ajax@redhat.com> 0.5.1-6.20131009gitba209eee
- - 1.15RC4 ABI rebuild
- * Wed Nov 20 2013 Adam Jackson <ajax@redhat.com> 0.5.1-5.20131009gitba209eee
- - 1.15RC2 ABI rebuild
- * Wed Nov 06 2013 Adam Jackson <ajax@redhat.com> 0.5.1-4.20131009gitba209eee
- - 1.15RC1 ABI rebuild
- * Fri Oct 25 2013 Adam Jackson <ajax@redhat.com> - 0.5.1-3.20131009gitba209eee
- - -ABI rebuild
- * Fri Oct 25 2013 Adam Jackson <ajax@redhat.com> 0.5.1-2
- - Add xserver ABI version interlocks
- * Wed Oct 09 2013 Adam Jackson <ajax@redhat.com> 0.5.1-1
- - New git snap for various bugfixes, Xv support, etc.
- * Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.0-6.20130401git81aadb8
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
- * Thu Apr 11 2013 Dave Airlie <airlied@redhat.com> 0.5.0-5.20130401git81aadb8
- - enable TLS, mesa builds with TLS enabled are also processing.
- * Fri Apr 05 2013 Jerome Glisse <jglisse@redhat.com> 0.5.0-4.20130401git81aadb8
- - Fix directory ownership.
- * Thu Apr 04 2013 Jerome Glisse <jglisse@redhat.com> 0.5.0-3.20130401git81aadb8
- - Remove comment rather than investigating Xorg mess as running ldconfig can't be harmfull.
- - Fix devel package dependency.
- * Wed Apr 03 2013 Jerome Glisse <jglisse@redhat.com> 0.5.0-2.20130401git81aadb8
- - Silence rpmlint warning about ldconfig
- - Only install libglamor.so in devel package.
- - Adding COPYING and README as doc
- * Thu Mar 28 2013 Jerome Glisse <jglisse@redhat.com> 0.5.0-1.20130401git81aadb8
- - Initial package
|