package/libva-utils: new package

The utils provided by this package were formerly packaged with libva.

Libva contained a patch not to compile mpeg2vldemo to reduce
dependencies by avoiding C++, this patch is not moved to this package.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Reviewed-by: Romain Naour <romain.naour@smile.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Bernd Kuhls 2017-07-03 23:09:53 +02:00 committed by Thomas Petazzoni
parent 0111ced770
commit 05b90f4513
5 changed files with 35 additions and 0 deletions

View file

@ -249,6 +249,7 @@ F: package/libsquish/
F: package/liburiparser/
F: package/libva/
F: package/libva-intel-driver/
F: package/libva-utils/
F: package/libvorbis/
F: package/libvpx/
F: package/libyuv/

View file

@ -247,6 +247,7 @@ comment "Graphic applications"
source "package/gnuplot/Config.in"
source "package/jhead/Config.in"
source "package/kmscube/Config.in"
source "package/libva-utils/Config.in"
source "package/mesa3d-demos/Config.in"
source "package/pngquant/Config.in"
source "package/qt5cinex/Config.in"

View file

@ -0,0 +1,15 @@
config BR2_PACKAGE_LIBVA_UTILS
bool "libva-utils"
depends on BR2_INSTALL_LIBSTDCPP
depends on !BR2_STATIC_LIBS # libva
depends on BR2_TOOLCHAIN_HAS_THREADS # libva
select BR2_PACKAGE_LIBVA
help
Libva-utils is a collection of tests for VA-API (Video
Acceleration API)
https://01.org/linuxmedia/vaapi
comment "libva-utils needs a toolchain w/ C++, threads, dynamic library"
depends on !BR2_INSTALL_LIBSTDCPP || \
BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS

View file

@ -0,0 +1,4 @@
# From https://github.com/01org/libva-utils/releases
sha1 8684aa2b28fc08bf62b1fa5acf95d23fab5faf9a libva-utils-1.8.3.tar.bz2
# Locally computed
sha256 c59de4fb6f1021c435b3f49e2410760692324ee5bb464c716d674fcb626a7e03 libva-utils-1.8.3.tar.bz2

View file

@ -0,0 +1,14 @@
################################################################################
#
# libva-utils
#
################################################################################
LIBVA_UTILS_VERSION = 1.8.3
LIBVA_UTILS_SOURCE = libva-utils-$(LIBVA_UTILS_VERSION).tar.bz2
LIBVA_UTILS_SITE = https://github.com/01org/libva-utils/releases/download/$(LIBVA_UTILS_VERSION)
LIBVA_UTILS_LICENSE = MIT
LIBVA_UTILS_LICENSE_FILES = COPYING
LIBVA_UTILS_DEPENDENCIES = host-pkgconf libva
$(eval $(autotools-package))