libva/libva.spec

144 lines
3.9 KiB
RPMSpec

#
# spec file for package libva
#
# Copyright (c) 2011 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/
#
# norootforbuild
Name: libva
Version: 1.0.14
Release: 1
License: MIT
Summary: Video Acceleration (VA) API for Linux
Url: http://freedesktop.org/wiki/Software/vaapi
Group: System/Libraries
Source: http://cgit.freedesktop.org/libva/snapshot/%{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: libudev-devel pkg-config
BuildRequires: xorg-x11-devel xorg-x11-libXext-devel xorg-x11-libXfixes-devel
BuildRequires: Mesa-devel libdrm-devel
BuildRequires: gcc-c++ libstdc++-devel
AutoReqProv: on
%description
The libva library implements the Video Acceleration (VA) API for Linux.
The library loads a hardware dependendent driver.
%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 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}
%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.
%prep
%setup -q
%build
autoreconf -v --install
%configure --enable-dummy-driver \
%if 0%{?suse_version} >= 01120
--enable-dummy-backend \
%endif
--enable-i965-driver \
--enable-glx \
--with-drivers-path=%{_libdir}/dri
make
%install
%makeinstall
find %{buildroot} -name '*.la' -delete -print
rm %{buildroot}%{_bindir}/test*
%clean
rm -rf %{buildroot}
%post -n libva1 -p /sbin/ldconfig
%postun -n libva1 -p /sbin/ldconfig
%files -n vaapi-tools
%defattr(-,root,root,-)
%{_bindir}/vainfo
%{_bindir}/avcenc
%dir %{_libdir}/dri
%{_libdir}/dri/dummy_drv_video.so
%{_libdir}/dri/i965_drv_video.so
%{_bindir}/h264encode
%{_bindir}/mpeg2vldemo
%{_bindir}/putsurface
%files -n libva1
%defattr(-, root, root)
%{_libdir}/libva.so.1
%{_libdir}/libva.so.%{version}
%{_libdir}/libva-tpi.so.1
%{_libdir}/libva-tpi.so.%{version}
%{_libdir}/libva-x11.so.1
%{_libdir}/libva-x11.so.%{version}
%{_libdir}/libva-glx.so.1
%{_libdir}/libva-glx.so.%{version}
%{_libdir}/libva-egl.so.1
%{_libdir}/libva-egl.so.%{version}
%if 0%{?suse_version} >= 01120
%{_libdir}/libva-dummy.so.1
%{_libdir}/libva-dummy.so.%{version}
%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
%{_libdir}/pkgconfig/libva-x11.pc
%{_libdir}/pkgconfig/libva-glx.pc
%{_libdir}/pkgconfig/libva-tpi.pc
%{_libdir}/pkgconfig/libva-egl.pc
%changelog