496391a1f0
always be used in other builtin.mk files. + In the USE_BUILTIN.* == "yes" case, set BUILDLINK_LIBNAME.* to the corresponding BUILTIN_LIBNAME.* value so that BUILDLINK_LIBNAME.* can always be used in other buildlink3.mk files.
70 lines
1.9 KiB
Makefile
70 lines
1.9 KiB
Makefile
# $NetBSD: curses.builtin.mk,v 1.5 2008/02/27 15:26:34 jlam Exp $
|
|
|
|
BUILTIN_PKG:= curses
|
|
|
|
BUILTIN_FIND_LIBS:= curses
|
|
BUILTIN_FIND_FILES_VAR:= H_CURSES
|
|
BUILTIN_FIND_FILES.H_CURSES= /usr/include/curses.h
|
|
|
|
.include "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 !defined(IS_BUILTIN.curses)
|
|
IS_BUILTIN.curses= no
|
|
. if empty(H_CURSES:M${LOCALBASE}/*) && exists(${H_CURSES})
|
|
IS_BUILTIN.curses= yes
|
|
. endif
|
|
.endif
|
|
MAKEVARS+= IS_BUILTIN.curses
|
|
|
|
###
|
|
### 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.curses)
|
|
. if ${PREFER.curses} == "pkgsrc"
|
|
USE_BUILTIN.curses= no
|
|
. else
|
|
USE_BUILTIN.curses= ${IS_BUILTIN.curses}
|
|
. if defined(BUILTIN_PKG.curses) && !empty(IS_BUILTIN.curses:M[yY][eE][sS])
|
|
USE_BUILTIN.curses= yes
|
|
. for _dep_ in ${BUILDLINK_API_DEPENDS.curses}
|
|
. if !empty(USE_BUILTIN.curses:M[yY][eE][sS])
|
|
USE_BUILTIN.curses!= \
|
|
if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.curses:Q}; then \
|
|
${ECHO} yes; \
|
|
else \
|
|
${ECHO} no; \
|
|
fi
|
|
. endif
|
|
. endfor
|
|
. endif
|
|
. endif # PREFER.curses
|
|
.endif
|
|
MAKEVARS+= USE_BUILTIN.curses
|
|
|
|
# Define BUILTIN_LIBNAME.curses to be the base name of the built-in
|
|
# curses library.
|
|
#
|
|
.if !empty(BUILTIN_LIB_FOUND.curses:M[yY][eE][sS])
|
|
BUILTIN_LIBNAME.curses= curses
|
|
.endif
|
|
|
|
###
|
|
### The section below only applies if we are not including this file
|
|
### solely to determine whether a built-in implementation exists.
|
|
###
|
|
CHECK_BUILTIN.curses?= no
|
|
.if !empty(CHECK_BUILTIN.curses:M[nN][oO])
|
|
|
|
. if !empty(USE_BUILTIN.curses:M[yY][eE][sS])
|
|
. if exists(${H_CURSES})
|
|
BUILDLINK_INCDIRS.curses?= ${H_CURSES:H:S/^${BUILDLINK_PREFIX.curses}\///}
|
|
. endif
|
|
BUILDLINK_LIBNAME.curses= ${BUILTIN_LIBNAME.curses}
|
|
. endif
|
|
|
|
.endif # CHECK_BUILTIN.curses
|