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.
23 lines
613 B
Makefile
23 lines
613 B
Makefile
# $NetBSD: buildlink3.mk,v 1.14 2018/01/07 13:04:26 rillig Exp $
|
|
|
|
BUILDLINK_TREE+= libfetch
|
|
|
|
.if !defined(LIBFETCH_BUILDLINK3_MK)
|
|
LIBFETCH_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_DEPMETHOD.libfetch?= build
|
|
|
|
BUILDLINK_API_DEPENDS.libfetch+= libfetch>=2.28
|
|
BUILDLINK_ABI_DEPENDS.libfetch?= libfetch>=2.36nb3
|
|
BUILDLINK_PKGSRCDIR.libfetch?= ../../net/libfetch
|
|
|
|
pkgbase := libfetch
|
|
.include "../../mk/pkg-build-options.mk"
|
|
|
|
.if !empty(PKG_BUILD_OPTIONS.libfetch:Mopenssl)
|
|
. include "../../security/openssl/buildlink3.mk"
|
|
BUILDLINK_LIBS.libfetch+= -lcrypto -lssl
|
|
.endif
|
|
.endif # LIBFETCH_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -libfetch
|