diff options
author | jlam <jlam@pkgsrc.org> | 2004-01-03 23:06:43 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-01-03 23:06:43 +0000 |
commit | 339cd13cb2e6dedfb07f792d4748aad67fe2788b (patch) | |
tree | 7815453a8a5d5cc91288c15c8c52893726b1e2bc /security/tcp_wrappers | |
parent | 24f7929dc215b42dce86fc5cd36d848a3e54389c (diff) | |
download | pkgsrc-339cd13cb2e6dedfb07f792d4748aad67fe2788b.tar.gz |
Initial sprinkling of work-in-progress buildlink3.mk files for using the
buildlink3 framework.
Diffstat (limited to 'security/tcp_wrappers')
-rw-r--r-- | security/tcp_wrappers/buildlink3.mk | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/security/tcp_wrappers/buildlink3.mk b/security/tcp_wrappers/buildlink3.mk new file mode 100644 index 00000000000..b4dd96870ee --- /dev/null +++ b/security/tcp_wrappers/buildlink3.mk @@ -0,0 +1,49 @@ +# $NetBSD: buildlink3.mk,v 1.1 2004/01/03 23:06:45 jlam Exp $ + +BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+ +TCP_WRAPPERS_BUILDLINK3_MK:= ${TCP_WRAPPERS_BUILDLINK3_MK}+ + +.if !empty(TCP_WRAPPERS_BUILDLINK3_MK:M\+) +. include "../../mk/bsd.prefs.mk" + +BUILDLINK_DEPENDS.tcp_wrappers?= tcp_wrappers>=7.6.1nb1 +BUILDLINK_PKGSRCDIR.tcp_wrappers?= ../../security/tcp_wrappers +.endif # TCP_WRAPPERS_BUILDLINK3_MK + +BUILDLINK_CHECK_BUILTIN.tcp_wrappers?= NO + +.if !defined(BUILDLINK_IS_BUILTIN.tcp_wrappers) +BUILDLINK_IS_BUILTIN.tcp_wrappers= NO +. if exists(/usr/include/tcpd.h) +BUILDLINK_IS_BUILTIN.tcp_wrappers= YES +. endif +.endif + +.if !empty(BUILDLINK_CHECK_BUILTIN.tcp_wrappers:M[yY][eE][sS]) +_NEED_TCP_WRAPPERS= NO +.endif + +.if !defined(_NEED_TCP_WRAPPERS) +. if !empty(BUILDLINK_IS_BUILTIN.tcp_wrappers:M[nN][oO]) +_NEED_TCP_WRAPPERS= YES +. else +_NEED_TCP_WRAPPERS= NO +. endif +MAKEFLAGS+= _NEED_TCP_WRAPPERS="${_NEED_TCP_WRAPPERS}" +.endif + +.if ${_NEED_TCP_WRAPPERS} == "YES" +. if !empty(BUILDLINK_DEPTH:M\+) +BUILDLINK_DEPENDS+= tcp_wrappers +. endif +.endif + +.if !empty(TCP_WRAPPERS_BUILDLINK3_MK:M\+) +. if ${_NEED_TCP_WRAPPERS} == "YES" +BUILDLINK_PACKAGES+= tcp_wrappers +. else +BUILDLINK_PREFIX.tcp_wrappers= /usr +. endif +.endif # TCP_WRAPPERS_BUILDLINK3_MK + +BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:C/\+$//} |