0f60b5791a
This version of libvdpau adds new chroma types defining whether surfaces contain frames or fields, and a new picture parameter structure that supports HEVC 4:4:4 pictures. Aaron Plattner (3): util.h: Make getenv_wrapper() static inline Fix typos from commit 53eeb07f68d483fee86ad872884aee890d5aa393 Bump version to 1.2 José Hiram Soltren (1): Fix doc error on displayable surface types ManojGuptaBonda (2): Add new frame and field mode chroma types. Add VdpDecoderQueryProfileCapability API Add HEVC 444 support in VDPAU API Rico Tzschichholz (1): mesa_dri2: Add missing include of config.h to define _GNU_SOURCE
35 lines
1,018 B
Makefile
35 lines
1,018 B
Makefile
# $NetBSD: Makefile,v 1.13 2019/02/28 22:46:41 wiz Exp $
|
|
|
|
DISTNAME= libvdpau-1.2
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= https://gitlab.freedesktop.org/vdpau/libvdpau/uploads/14b620084c027d546fa0b3f083b800c6/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= cheusov@NetBSD.org
|
|
HOMEPAGE= http://http.download.nvidia.com/XFree86/vdpau/doxygen/html/index.html
|
|
COMMENT= Video Decode and Presentation API for Unix
|
|
LICENSE= mit
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config gmake
|
|
USE_LANGUAGES= c c++
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --disable-documentation
|
|
|
|
PKGCONFIG_OVERRIDE+= vdpau.pc.in
|
|
|
|
EGDIR= ${PREFIX}/share/examples/libvdpau
|
|
CONF_FILES= ${EGDIR}/vdpau_wrapper.cfg \
|
|
${PKG_SYSCONFDIR}/vdpau_wrapper.cfg
|
|
|
|
INSTALL_MAKE_FLAGS= sysconfdir=${EGDIR}
|
|
|
|
.include "available.mk"
|
|
.if ${VDPAU_AVAILABLE} == no
|
|
PKG_SKIP_REASON+= "VDPAU is not available on this platform"
|
|
.endif
|
|
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../x11/libXext/buildlink3.mk"
|
|
.include "../../x11/xorgproto/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|