blob: 460baa4b73c3aaeab6ef5e64571afcce28056d28 (
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
|
# $NetBSD: buildlink.mk,v 1.1 2001/06/16 19:23:20 jlam Exp $
#
# This Makefile fragment is included by packages that use tcp_wrappers.
#
# To use this Makefile fragment, simply:
#
# (1) Optionally define TCP_WRAPPERS_REQD to the version of tcp_wrappers
# desired.
# (2) Include this Makefile fragment in the package Makefile,
# (3) Add ${BUILDLINK_DIR}/include to the front of the C preprocessor's header
# search path, and
# (4) Add ${BUILDLINK_DIR}/lib to the front of the linker's library search
# path.
.if !defined(TCP_WRAPPERS_BUILDLINK_MK)
TCP_WRAPPERS_BUILDLINK_MK= # defined
.include "../../mk/bsd.prefs.mk"
TCP_WRAPPERS_REQD?= 7.6.1nb1
.if exists(/usr/include/tcpd.h)
_NEED_TCP_WRAPPERS= NO
.else
_NEED_TCP_WRAPPERS= YES
.endif
.if ${_NEED_TCP_WRAPPERS} == "YES"
DEPENDS+= tcp_wrappers>=${TCP_WRAPPERS_REQD}:../../security/tcp_wrappers
BUILDLINK_PREFIX.tcp_wrappers= ${LOCALBASE}
.else
BUILDLINK_PREFIX.tcp_wrappers= /usr
.endif
BUILDLINK_FILES.tcp_wrappers= include/tcpd.h
BUILDLINK_FILES.tcp_wrappers+= lib/libwrap.*
BUILDLINK_TARGETS.tcp_wrappers= tcp_wrappers-buildlink
BUILDLINK_TARGETS+= ${BUILDLINK_TARGETS.tcp_wrappers}
pre-configure: ${BUILDLINK_TARGETS.tcp_wrappers}
tcp_wrappers-buildlink: _BUILDLINK_USE
.include "../../mk/bsd.buildlink.mk"
.endif # TCP_WRAPPERS_BUILDLINK_MK
|