ONLY_FOR_ARCHS_REASON is used as part of the sentence and thus should start with lower-case letter and not end with a period which is added by the framework, similar to other knobs like BROKEN, IGNORE, et al. While here, remove needless quoting, add missing Oxford comma, expand contractions and jargonisms, use correct spelling for proper names.
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
PORTNAME= libva-intel-driver
|
|
DISTVERSION= 2.4.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= multimedia
|
|
|
|
MAINTAINER= jbeich@FreeBSD.org
|
|
COMMENT= VAAPI legacy driver for Intel GMA 4500 (Gen4) to UHD 630 (Gen9.5)
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
ONLY_FOR_ARCHS_REASON= only Intel GPUs on x86 are supported
|
|
|
|
BUILD_DEPENDS= libva>=2.4.0:multimedia/libva
|
|
LIB_DEPENDS= libdrm_intel.so:graphics/libdrm \
|
|
libva.so:multimedia/libva
|
|
|
|
USES= compiler:c11 meson pkgconfig
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= intel
|
|
GH_PROJECT= intel-vaapi-driver
|
|
PLIST_FILES= lib/dri/i915_drv_video.so lib/dri/i965_drv_video.so
|
|
|
|
OPTIONS_DEFINE= HYBRID WAYLAND X11
|
|
OPTIONS_DEFAULT=HYBRID WAYLAND X11
|
|
|
|
HYBRID_DESC= Hybrid VP8 encoding on Gen7/8 and VP9 decoding on Gen7/8/9
|
|
HYBRID_RUN_DEPENDS= ${LOCALBASE}/lib/dri/hybrid_drv_video.so:multimedia/libva-intel-hybrid-driver
|
|
HYBRID_MESON_TRUE= enable_hybrid_codec
|
|
|
|
WAYLAND_LIB_DEPENDS= libva-wayland.so:multimedia/libva
|
|
WAYLAND_MESON_YES= with_wayland
|
|
|
|
X11_LIB_DEPENDS= libva-x11.so:multimedia/libva
|
|
X11_MESON_YES= with_x11
|
|
|
|
post-install:
|
|
${LN} -sf i965_drv_video.so ${STAGEDIR}${PREFIX}/lib/dri/i915_drv_video.so
|
|
|
|
.include <bsd.port.mk>
|