pkgsrc/security/pflkm/builtin.mk
reed 5abef9be14 Over 1200 files touched but no revisions bumped :)
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).
2006-04-06 06:21:32 +00:00

110 lines
3.2 KiB
Makefile

# $NetBSD: builtin.mk,v 1.10 2006/04/06 06:22:44 reed Exp $
BUILTIN_PKG:= pflkm
BUILTIN_FIND_FILES_VAR:= H_PFLKM EXE_PFCTL
BUILTIN_FIND_FILES.H_PFLKM= /usr/include/net/pfvar.h
BUILTIN_FIND_FILES.H_PFLKM+= /usr/include/net/pf/pfvar.h
BUILTIN_FIND_FILES.EXE_PFCTL+= /sbin/pfctl
.include "../../mk/buildlink3/bsd.builtin.mk"
# Compute the version number of the PF API by checking for the presence
# of symbols added in newer versions and store the result in ${PF_VERSION}.
#
.if !defined(PF_VERSION)
PF_VERSION= 3.7 # package default
. if empty(H_PFLKM:M__nonexistent__)
# OpenBSD 3.8: pf_socket_lookup added
_BLTN_PF_3_8!= ${GREP} -c pf_socket_lookup ${H_PFLKM} || ${TRUE}
# OpenBSD 3.7: pf_threshold added
_BLTN_PF_3_7!= ${GREP} -c pf_threshold ${H_PFLKM} || ${TRUE}
# OpenBSD 3.6: pf_cksum_fixup added
_BLTN_PF_3_6!= ${GREP} -c pf_cksum_fixup ${H_PFLKM} || ${TRUE}
. if ${_BLTN_PF_3_8} != "0"
PF_VERSION= 3.8
. elif ${_BLTN_PF_3_7} != "0"
PF_VERSION= 3.7
. elif ${_BLTN_PF_3_6} != "0"
PF_VERSION= 3.6
. else
PF_VERSION= 3.5
. endif
. endif
.endif
MAKEVARS+= PF_VERSION
###
### Determine if there is a built-in implementation of the package and
### set IS_BUILTIN.<pkg> appropriately ("yes" or "no").
###
.if !defined(IS_BUILTIN.pflkm)
IS_BUILTIN.pflkm= no
. if empty(H_PFLKM:M__nonexistent__) && empty(H_PFLKM:M${LOCALBASE}/*)
IS_BUILTIN.pflkm= yes
. endif
.endif
MAKEVARS+= IS_BUILTIN.pflkm
###
### 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.pflkm) && \
!empty(IS_BUILTIN.pflkm:M[yY][eE][sS])
. if ${PF_VERSION} == "3.8"
BUILTIN_PKG.pflkm= pflkm-20051101 # release date for PF API 3.8
. elif ${PF_VERSION} == "3.7"
BUILTIN_PKG.pflkm= pflkm-20050519 # release date for PF API 3.7
. elif ${PF_VERSION} == "3.6"
BUILTIN_PKG.pflkm= pflkm-20041101 # release date for PF API 3.6
. elif ${PF_VERSION} == "3.5"
BUILTIN_PKG.pflkm= pflkm-20040501 # release date for PF API 3.5
. else
BUILTIN_PKG.pflkm= pflkm-20040501 # release date for PF API 3.5
. endif
.endif
MAKEVARS+= BUILTIN_PKG.pflkm
###
### 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.pflkm)
. if ${PREFER.pflkm} == "pkgsrc"
USE_BUILTIN.pflkm= no
. else
USE_BUILTIN.pflkm= ${IS_BUILTIN.pflkm}
. if defined(BUILTIN_PKG.pflkm) && \
!empty(IS_BUILTIN.pflkm:M[yY][eE][sS])
USE_BUILTIN.pflkm= yes
. for _dep_ in ${BUILDLINK_API_DEPENDS.pflkm}
. if !empty(USE_BUILTIN.pflkm:M[yY][eE][sS])
USE_BUILTIN.pflkm!= \
if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.pflkm:Q}; then \
${ECHO} yes; \
else \
${ECHO} no; \
fi
. endif
. endfor
. endif
. endif # PREFER.pflkm
.endif
MAKEVARS+= USE_BUILTIN.pflkm
###
### The section below only applies if we are not including this file
### solely to determine whether a built-in implementation exists.
###
CHECK_BUILTIN.pflkm?= no
.if !empty(CHECK_BUILTIN.pflkm:M[nN][oO])
. if !empty(USE_BUILTIN.pflkm:M[nN][oO])
PFCTL?= ${BUILDLINK_PREFIX.pflkm}/bin/pfctl
. else
PFCTL?= ${EXE_PFCTL}
. endif
.endif # CHECK_BUILTIN.pflkm