5abef9be14
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
117 lines
3.6 KiB
Makefile
117 lines
3.6 KiB
Makefile
# $NetBSD: builtin.mk,v 1.14 2006/04/06 06:21:55 reed Exp $
|
|
|
|
BUILTIN_PKG:= readline
|
|
|
|
BUILTIN_FIND_LIBS:= edit readline
|
|
BUILTIN_FIND_FILES_VAR:= H_READLINE _BLTN_H_READLINE
|
|
BUILTIN_FIND_FILES.H_READLINE= /usr/include/readline/readline.h \
|
|
/usr/include/readline.h
|
|
BUILTIN_FIND_FILES._BLTN_H_READLINE= \
|
|
/usr/include/readline/readline.h \
|
|
/usr/include/readline.h
|
|
BUILTIN_FIND_GREP.H_READLINE= \#define[ ]*RL_VERSION_MAJOR
|
|
|
|
.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 !defined(IS_BUILTIN.readline)
|
|
IS_BUILTIN.readline= no
|
|
. if empty(H_READLINE:M__nonexistent__) && \
|
|
empty(H_READLINE:M${LOCALBASE}/*) && \
|
|
!empty(BUILTIN_LIB_FOUND.readline:M[yY][eE][sS])
|
|
IS_BUILTIN.readline= yes
|
|
. endif
|
|
.endif
|
|
MAKEVARS+= IS_BUILTIN.readline
|
|
|
|
###
|
|
### If there is a built-in implementation, then set BUILTIN_PKG.<pkg> to
|
|
### a package name to represent the built-in package.
|
|
###
|
|
.if !defined(BUILTIN_PKG.readline) && \
|
|
!empty(IS_BUILTIN.readline:M[yY][eE][sS]) && \
|
|
empty(H_READLINE:M__nonexistent__)
|
|
BUILTIN_VERSION.readline!= \
|
|
${AWK} '/\#define[ ]*RL_VERSION_MAJOR/ { M = $$3 } \
|
|
/\#define[ ]*RL_VERSION_MINOR/ { m = "."$$3 } \
|
|
END { printf "%s%s\n", M, m } \
|
|
' ${H_READLINE:Q}
|
|
BUILTIN_PKG.readline= readline-${BUILTIN_VERSION.readline}
|
|
.endif
|
|
MAKEVARS+= BUILTIN_PKG.readline
|
|
|
|
###
|
|
### 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.readline)
|
|
. if ${PREFER.readline} == "pkgsrc"
|
|
USE_BUILTIN.readline= no
|
|
. else
|
|
USE_BUILTIN.readline= ${IS_BUILTIN.readline}
|
|
. if defined(BUILTIN_PKG.readline) && \
|
|
!empty(IS_BUILTIN.readline:M[yY][eE][sS])
|
|
USE_BUILTIN.readline= yes
|
|
. for _dep_ in ${BUILDLINK_API_DEPENDS.readline}
|
|
. if !empty(USE_BUILTIN.readline:M[yY][eE][sS])
|
|
USE_BUILTIN.readline!= \
|
|
if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.readline:Q}; then \
|
|
${ECHO} "yes"; \
|
|
else \
|
|
${ECHO} "no"; \
|
|
fi
|
|
. endif
|
|
. endfor
|
|
. endif
|
|
# XXX
|
|
# XXX By default, assume that the native editline library is good enough
|
|
# XXX to replace GNU readline if it provides the readline-compatibility
|
|
# XXX headers.
|
|
# XXX
|
|
. if !empty(BUILTIN_LIB_FOUND.readline:M[nN][oO]) && \
|
|
!empty(BUILTIN_LIB_FOUND.edit:M[yY][eE][sS]) && \
|
|
empty(_BLTN_H_READLINE:M__nonexistent__)
|
|
USE_BUILTIN.readline= yes
|
|
. endif
|
|
#
|
|
# Some platforms don't have a readline/editline implementation that can
|
|
# replace GNU readline.
|
|
#
|
|
_INCOMPAT_READLINE?= SunOS-*-* Darwin-[567].*-* Interix-*-*
|
|
. for _pattern_ in ${_INCOMPAT_READLINE} ${INCOMPAT_READLINE}
|
|
. if !empty(MACHINE_PLATFORM:M${_pattern_})
|
|
USE_BUILTIN.readline= no
|
|
. endif
|
|
. endfor
|
|
. endif # PREFER.readline
|
|
.endif
|
|
MAKEVARS+= USE_BUILTIN.readline
|
|
|
|
# If USE_GNU_READLINE is defined, then force the use of a GNU readline
|
|
# implementation.
|
|
#
|
|
.if defined(USE_GNU_READLINE)
|
|
. if !empty(IS_BUILTIN.readline:M[nN][oO])
|
|
USE_BUILTIN.readline= no
|
|
. endif
|
|
.endif
|
|
|
|
###
|
|
### The section below only applies if we are not including this file
|
|
### solely to determine whether a built-in implementation exists.
|
|
###
|
|
CHECK_BUILTIN.readline?= no
|
|
.if !empty(CHECK_BUILTIN.readline:M[nN][oO])
|
|
|
|
. if !empty(USE_BUILTIN.readline:M[yY][eE][sS])
|
|
. if !empty(BUILTIN_LIB_FOUND.readline:M[nN][oO]) && \
|
|
!empty(BUILTIN_LIB_FOUND.edit:M[yY][eE][sS])
|
|
BUILDLINK_TRANSFORM+= l:history:edit:termcap
|
|
BUILDLINK_TRANSFORM+= l:readline:edit:termcap
|
|
. endif
|
|
. endif
|
|
|
|
.endif # CHECK_BUILTIN.readline
|