blob: d13a14b692c499d322c7b78d49710b1e175c52a3 (
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
# ex:ts=8
# Ports collection makefile for: dhcp
# Date created: 7 Mar 1996
# Whom: se
#
# $FreeBSD$
#
PORTNAME= isc-dhcp3
PORTVERSION= 3.0.b2.16
CATEGORIES= net
MASTER_SITES= ftp://ftp.isc.org/isc/dhcp/
DISTNAME= ${PORTNAME:S/isc-//:S/3/-/}${PORTVERSION:S/.b/b/:R}pl${PORTVERSION:E}
MAINTAINER= clefevre@citeweb.net
#
# Global variables
#
HAS_CONFIGURE= yes
MAN3= dhcpctl.3 omapi.3
MAN5= dhclient.conf.5 dhclient.leases.5 dhcp-contrib.5 \
dhcp-eval.5 dhcp-options.5 dhcpd.conf.5 \
dhcpd.leases.5
MAN8= dhclient.8 dhclient-script.8 dhcpd.8 dhcrelay.8
#
# Local variables
#
PATCH_SUBDIRS= client common dhcpctl minires omapip relay server
BIN_FILES= dhclient dhcpd dhcrelay
SAMP_FILES= client/dhclient.conf server/dhcpd.conf
RCD_FILES= isc-dhcpd.sh.sample
DOC_FILES= CHANGES COPYRIGHT README RELNOTES
DATA_FILES= dhclient.leases dhcpd.leases
CONF_FILES= dhclient.conf
BIN_DIR= ${PREFIX}/sbin
ETC_DIR= ${PREFIX}/etc
RCD_DIR= ${PREFIX}/etc/rc.d
DOC_DIR= ${PREFIX}/share/doc/${PORTNAME}
VARDB_DIR= /var/db
STRIP?= strip
#
# Post-patch
#
post-patch: patch-scripts patch-makefiles
patch-scripts:
@${PERL} -pi.fbsd -e 's.!!PREFIX!!.${PREFIX}.g' \
${WRKSRC}/client/scripts/freebsd
patch-makefiles:
.for subdir in ${PATCH_SUBDIRS}
@${PERL} -pi.fbsd -e \
's|^DEBUG[ ]*=|DEBUG ?=|g;s|^CFLAGS[ ]*=|CFLAGS +=|g' \
${WRKSRC}/${subdir}/Makefile.dist
.endfor
#
# Post-install
#
post-install: strip-binary-files install-startup-files \
install-doc-files install-sample-files \
create-data-files create-conf-files
strip-binary-files:
.for file in ${BIN_FILES}
.if exists({BIN_DIR}/${file})
@${STRIP} ${BIN_DIR}/${file}
.endif
.endfor
install-startup-files:
.for file in ${RCD_FILES}
@${INSTALL_SCRIPT} ${FILESDIR}/${file} ${RCD_DIR}/${file}
.endfor
install-doc-files:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOC_DIR}
.for file in ${DOC_FILES}
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOC_DIR}/${file}
.endfor
.endif
install-sample-files:
.for file in ${SAMP_FILES}
@${INSTALL_DATA} ${WRKSRC}/${file} ${ETC_DIR}/${file:T}.sample
.endfor
create-data-files:
.for file in ${DATA_FILES}
.if !exists(${VARDB_DIR}/${file})
@${TOUCH} ${VARDB_DIR}/${file}
.endif
.endfor
create-conf-files:
.for file in ${CONF_FILES}
.if !exists(${ETC_DIR}/${file})
@${TOUCH} ${ETC_DIR}/${file}
.endif
.endfor
.include <bsd.port.mk>
|