17e39f419d
The actual fix as been done by "pkglint -F */*/buildlink3.mk", and was reviewed manually. There are some .include lines that still are indented with zero spaces although the surrounding .if is indented. This is existing practice.
21 lines
490 B
Makefile
21 lines
490 B
Makefile
# $NetBSD: buildlink3.mk,v 1.3 2018/01/07 13:04:25 rillig Exp $
|
|
|
|
.include "../../multimedia/libva/available.mk"
|
|
.if ${VAAPI_AVAILABLE} == "yes"
|
|
|
|
BUILDLINK_TREE+= libva
|
|
|
|
. if !defined(LIBVA_BUILDLINK3_MK)
|
|
LIBVA_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.libva+= libva>=1.0.6
|
|
BUILDLINK_PKGSRCDIR.libva?= ../../multimedia/libva
|
|
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../x11/libdrm/buildlink3.mk"
|
|
|
|
. endif # LIBVA_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -libva
|
|
|
|
.endif # VAAPI_AVAILABLE
|