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.
24 lines
645 B
Makefile
24 lines
645 B
Makefile
# $NetBSD: buildlink3.mk,v 1.5 2018/01/07 13:04:32 rillig Exp $
|
|
|
|
.include "../../mk/bsd.fast.prefs.mk"
|
|
|
|
.if ${X11_TYPE} != "modular" && \
|
|
!exists(${X11BASE}/lib/pkgconfig/pciaccess.pc) && \
|
|
!exists(${X11BASE}/lib${LIBABISUFFIX}/pkgconfig/pciaccess.pc)
|
|
.include "../../mk/x11.buildlink3.mk"
|
|
.else
|
|
|
|
BUILDLINK_TREE+= libpciaccess
|
|
|
|
. if !defined(LIBPCIACCESS_BUILDLINK3_MK)
|
|
LIBPCIACCESS_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.libpciaccess+= libpciaccess>=0.10.4
|
|
BUILDLINK_PKGSRCDIR.libpciaccess?= ../../sysutils/libpciaccess
|
|
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
. endif # LIBPCIACCESS_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -libpciaccess
|
|
|
|
.endif
|