pkgsrc/x11/libXt/builtin.mk
rillig 121d00ed27 x11: align variable assignments
pkglint -Wall -F --only aligned --only indent -r

No manual corrections.
2019-11-03 09:14:06 +00:00

51 lines
1.3 KiB
Makefile

# $NetBSD: builtin.mk,v 1.3 2019/11/03 09:14:12 rillig Exp $
BUILTIN_PKG:= libXt
BUILTIN_FIND_FILES_VAR:= H_XTOS
BUILTIN_FIND_FILES.H_XTOS= ${X11BASE}/include/X11/Xtos.h
.include "../../mk/buildlink3/bsd.builtin.mk"
###
### Determine if there is a built-in implementation of the package and
### set IS_BUILTIN.<pkg> appropriately ("yes" or "no").
###
.if ${X11BASE} == ${LOCALBASE}
IS_BUILTIN.libXt= no
.elif !defined(IS_BUILTIN.libXt)
IS_BUILTIN.libXt= no
. if empty(H_XTOS:M__nonexistent__)
IS_BUILTIN.libXt= yes
. endif
.endif
MAKEVARS+= IS_BUILTIN.libXt
###
### Determine whether we should use the built-in implementation if it
### exists, and set USE_BUILTIN.<pkg> appropriate ("yes" or "no").
###
.if !defined(USE_BUILTIN.libXt)
. if ${PREFER.libXt} == "pkgsrc"
USE_BUILTIN.libXt= no
. else
USE_BUILTIN.libXt= ${IS_BUILTIN.libXt}
. if defined(BUILTIN_PKG.libXt) && \
!empty(IS_BUILTIN.libXt:M[yY][eE][sS])
USE_BUILTIN.libXt= yes
. for _dep_ in ${BUILDLINK_API_DEPENDS.libXt}
. if !empty(USE_BUILTIN.libXt:M[yY][eE][sS])
USE_BUILTIN.libXt!= \
if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.libXt:Q}; then \
${ECHO} yes; \
else \
${ECHO} no; \
fi
. endif
. endfor
. endif
. endif # PREFER.libXt
.endif
MAKEVARS+= USE_BUILTIN.libXt
.include "../../mk/x11.builtin.mk"