Stefan Dirsch
e81a6048f3
- Remove intel-driver, it has been packaged separately with proper hardware "Supplements" so it gets installed only when needed. - Fix -devel package requires, otherwise dependant packages fail with missing headers wanted by files in /usr/include/va. OBS-URL: https://build.opensuse.org/request/show/121807 OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/libva?expand=0&rev=27
158 lines
4.3 KiB
RPMSpec
158 lines
4.3 KiB
RPMSpec
#
|
|
# spec file for package libva
|
|
#
|
|
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
#
|
|
%define driver_version 1.0.17
|
|
%define lib_version 1.0.15
|
|
|
|
Name: libva
|
|
Version: %{lib_version}
|
|
Release: 0
|
|
Summary: Video Acceleration (VA) API for Linux
|
|
License: MIT
|
|
Group: System/Libraries
|
|
Url: http://freedesktop.org/wiki/Software/vaapi
|
|
Source0: http://cgit.freedesktop.org/libva/snapshot/%{name}-%{lib_version}.tar.bz2
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: libtool
|
|
BuildRequires: pkg-config
|
|
BuildRequires: pkgconfig(gl)
|
|
BuildRequires: pkgconfig(libdrm)
|
|
BuildRequires: pkgconfig(libdrm_intel)
|
|
BuildRequires: pkgconfig(libudev)
|
|
BuildRequires: pkgconfig(xext)
|
|
BuildRequires: pkgconfig(xfixes)
|
|
# pkgconfig(libdrm_intel) currently only exists on x86*
|
|
ExclusiveArch: %ix86 x86_64
|
|
|
|
%description
|
|
The libva library implements the Video Acceleration (VA) API for Linux.
|
|
The library loads a hardware dependendent driver.
|
|
|
|
%package -n libva1
|
|
Summary: Video Acceleration (VA) API for Linux
|
|
Group: System/Libraries
|
|
|
|
%description -n libva1
|
|
The libva library implements the Video Acceleration (VA) API for Linux.
|
|
The library loads a hardware dependendent driver.
|
|
|
|
%package devel
|
|
Summary: Video Acceleration (VA) API for Linux -- development files
|
|
Group: Development/Languages/C and C++
|
|
Requires: libva1 = %{version}
|
|
Requires: pkgconfig(gl)
|
|
Requires: pkgconfig(libdrm)
|
|
Requires: pkgconfig(x11)
|
|
Requires: pkgconfig(xfixes)
|
|
|
|
%description devel
|
|
The libva library implements the Video Acceleration (VA) API for Linux.
|
|
The library loads a hardware dependendent driver.
|
|
|
|
This package provides the development environment for libva.
|
|
|
|
%package -n vaapi-tools
|
|
Summary: Video Acceleration (VA) API for Linux
|
|
Group: System/Libraries
|
|
|
|
%description -n vaapi-tools
|
|
The libva library implements the Video Acceleration (VA) API for Linux.
|
|
The library loads a hardware dependendent driver.
|
|
|
|
This is a set of tools around vaapi livrary.
|
|
|
|
%package -n vaapi-drivers
|
|
Version: %{driver_version}
|
|
Release: 0
|
|
Summary: Video Acceleration (VA) API for Linux
|
|
Group: System/Libraries
|
|
|
|
%description -n vaapi-drivers
|
|
The libva library implements the Video Acceleration (VA) API for Linux.
|
|
The library loads a hardware dependendent driver.
|
|
|
|
This contains the dummy and hardware drivers.
|
|
|
|
%prep
|
|
%setup -q -n vaapi -c -a 0
|
|
|
|
%build
|
|
pushd libva-%{lib_version}
|
|
autoreconf -v --install
|
|
%configure --enable-dummy-driver \
|
|
%if 0%{?suse_version} >= 01120
|
|
--enable-dummy-backend \
|
|
%endif
|
|
--enable-glx \
|
|
--enable-egl \
|
|
--with-drivers-path=%{_libdir}/dri
|
|
make %{?_smp_mflags}
|
|
popd
|
|
|
|
%install
|
|
pushd libva-%{lib_version}
|
|
%makeinstall
|
|
popd
|
|
find %{buildroot} -name '*.la' -delete -print
|
|
grep -r include %{buildroot}%{_includedir}
|
|
|
|
%post -n libva1 -p /sbin/ldconfig
|
|
|
|
%postun -n libva1 -p /sbin/ldconfig
|
|
|
|
%files -n vaapi-tools
|
|
%defattr(-,root,root,-)
|
|
%{_bindir}/vainfo
|
|
%{_bindir}/avcenc
|
|
%{_bindir}/h264encode
|
|
%{_bindir}/mpeg2vldemo
|
|
%{_bindir}/putsurface
|
|
|
|
%files -n vaapi-drivers
|
|
%defattr(-,root,root,-)
|
|
%dir %{_libdir}/dri
|
|
%{_libdir}/dri/dummy_drv_video.so
|
|
|
|
%files -n libva1
|
|
%defattr(-, root, root)
|
|
%{_libdir}/libva.so.*
|
|
%{_libdir}/libva-tpi.so.*
|
|
%{_libdir}/libva-x11.so.*
|
|
%{_libdir}/libva-glx.so.*
|
|
%{_libdir}/libva-egl.so.*
|
|
%if 0%{?suse_version} >= 01120
|
|
%{_libdir}/libva-dummy.so.*
|
|
%endif
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/libva.so
|
|
%{_libdir}/libva-tpi.so
|
|
%{_libdir}/libva-x11.so
|
|
%{_libdir}/libva-glx.so
|
|
%{_libdir}/libva-egl.so
|
|
%if 0%{?suse_version} >= 01120
|
|
%{_libdir}/libva-dummy.so
|
|
%endif
|
|
%{_includedir}/va
|
|
%{_libdir}/pkgconfig/libva*.pc
|
|
|
|
%changelog
|