summaryrefslogtreecommitdiff
path: root/mk/pam.buildlink3.mk
blob: 00d366ab480dc9ec231606226d1f1f135a6cdcff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# $NetBSD: pam.buildlink3.mk,v 1.3 2005/01/14 07:54:20 jlam Exp $
#
# This Makefile fragment is meant to be included by packages that
# require a PAM implementation.  pam.buildlink3.mk will:
#
#	* set PAMBASE to the base directory of the PAM files;
#	* set PAM_TYPE to the PAM implementation used.
#
# There are two variables that can be used to tweak the selection of
# the PAM implementation:
#
# PAM_DEFAULT is a user-settable variable whose value is the default
#	PAM implementation to use.
#
# PAM_ACCEPTED is a package-settable list of PAM implementations
#	that may be used by the package.
#

PAM_BUILDLINK3_MK:=	${PAM_BUILDLINK3_MK}+

.include "../../mk/bsd.prefs.mk"

.if !empty(PAM_BUILDLINK3_MK:M+)
#
# This is an exhaustive list of all of the PAM implementations
# that may be used with PAM.buildlink3.mk, in order of precedence.
#
_PAM_PKGS?=	linux-pam openpam solaris-pam

BUILDLINK_BUILTIN_MK.linux-pam=		../../security/PAM/builtin.mk
BUILDLINK_BUILTIN_MK.openpam=		../../security/openpam/builtin.mk
BUILDLINK_BUILTIN_MK.solaris-pam=	../../mk/solaris-pam.builtin.mk

# If we have a particular PAM implementation in the base system, then
# default to using that PAM type.  Otherwise, default to "linux-pam".
#
.  for _pam_ in ${_PAM_PKGS}
.    if exists(${BUILDLINK_BUILTIN_MK.${_pam_}})
CHECK_BUILTIN.${_pam_}:=	yes
.      include "${BUILDLINK_BUILTIN_MK.${_pam_}}"
.      if defined(IS_BUILTIN.${_pam_}) && \
          !empty(IS_BUILTIN.${_pam_}:M[yY][eE][sS])
PAM_DEFAULT?=	${_pam_}
.      endif
CHECK_BUILTIN.${_pam_}:=	no
.    endif
.  endfor
PAM_DEFAULT?=	linux-pam
PAM_ACCEPTED?=	${_PAM_PKGS}

_PAM_DEFAULT=	${PAM_DEFAULT}
_PAM_ACCEPTED=	${PAM_ACCEPTED}

_PAM_TYPE?=	${_PAM_DEFAULT}

.  if !empty(_PAM_ACCEPTED:M${_PAM_TYPE})
PAM_TYPE=	${_PAM_TYPE}
.  else
PAM_TYPE=	none
.  endif
PAMBASE=	${BUILDLINK_PREFIX.${PAM_TYPE}}

BUILD_DEFS+=	PAM_TYPE
BUILD_DEFS+=	PAMBASE
.endif	# PAM_BUILDLINK3_MK

.if ${PAM_TYPE} == "none"
PKG_FAIL_REASON=	\
	"${_PAM_TYPE} is not an acceptable PAM type for ${PKGNAME}."
.elif ${PAM_TYPE} == "linux-pam"
.  include "../../security/PAM/buildlink3.mk"
.elif ${PAM_TYPE} == "openpam"
.  include "../../security/openpam/buildlink3.mk"
.elif ${PAM_TYPE} == "solaris-pam"
BUILDLINK_PACKAGES:=	${BUILDLINK_PACKAGES:Nsolaris-pam}
BUILDLINK_PACKAGES+=	solaris-pam
.endif