Lines 8-14
Link Here
|
8 |
|
8 |
|
9 |
PORTNAME= dhcp |
9 |
PORTNAME= dhcp |
10 |
PORTVERSION= 3.0.2 |
10 |
PORTVERSION= 3.0.2 |
11 |
PORTREVISION= 7 |
11 |
PORTREVISION= 8 |
12 |
CATEGORIES= net |
12 |
CATEGORIES= net |
13 |
MASTER_SITES= ${MASTER_SITE_ISC} |
13 |
MASTER_SITES= ${MASTER_SITE_ISC} |
14 |
MASTER_SITE_SUBDIR= dhcp dhcp/dhcp-3.0-history |
14 |
MASTER_SITE_SUBDIR= dhcp dhcp/dhcp-3.0-history |
Lines 34-40
Link Here
|
34 |
DHCP_LDAP "add experimental LDAP backend support" off \ |
34 |
DHCP_LDAP "add experimental LDAP backend support" off \ |
35 |
DHCP_LDAP_SSL "support LDAP connection over SSL/TLS" on \ |
35 |
DHCP_LDAP_SSL "support LDAP connection over SSL/TLS" on \ |
36 |
OPENSSL_BASE "use the base system OpenSSL (required by TLS)" on \ |
36 |
OPENSSL_BASE "use the base system OpenSSL (required by TLS)" on \ |
37 |
OPENSSL_PORT "use OpenSSL from ports (required by TLS)" off |
37 |
OPENSSL_PORT "use OpenSSL from ports (required by TLS)" off \ |
|
|
38 |
DHCP_LQ "DHCPLEASEQUERY support used by Cisco uBR's" off |
38 |
.endif |
39 |
.endif |
39 |
|
40 |
|
40 |
.include <bsd.port.pre.mk> |
41 |
.include <bsd.port.pre.mk> |
Lines 56-61
Link Here
|
56 |
.endif |
57 |
.endif |
57 |
.endif |
58 |
.endif |
58 |
|
59 |
|
|
|
60 |
.if ${SUBSYS} == server && defined(WITH_DHCP_LQ) |
61 |
# Based on patch from Dmitry Sukhodoev : |
62 |
PATCH_SITES= http://bingo.ru/~raven/FreeBSD/patches/ \ |
63 |
ftp://ftp.frm2.tum.de/pub/jpulz/FreeBSD/ |
64 |
PATCHFILES+= ${PORTNAME}-${RELEASE}${VERSION}${PATCHLEVEL}-dlq-patch |
65 |
.endif |
66 |
|
59 |
# Global variables |
67 |
# Global variables |
60 |
# |
68 |
# |
61 |
|
69 |
|
Lines 200-206
Link Here
|
200 |
post-patch: patch-scripts patch-makefile-conf \ |
208 |
post-patch: patch-scripts patch-makefile-conf \ |
201 |
patch-makefiles-dist patch-man-pages \ |
209 |
patch-makefiles-dist patch-man-pages \ |
202 |
patch-pkgmessage patch-site-conf \ |
210 |
patch-pkgmessage patch-site-conf \ |
203 |
patch-rc-scripts |
211 |
patch-rc-scripts patch-dlq |
204 |
|
212 |
|
205 |
patch-scripts: |
213 |
patch-scripts: |
206 |
@${REINPLACE_CMD} ${REINPLACE_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ |
214 |
@${REINPLACE_CMD} ${REINPLACE_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ |
Lines 260-265
Link Here
|
260 |
.endif |
268 |
.endif |
261 |
.endif |
269 |
.endif |
262 |
|
270 |
|
|
|
271 |
patch-dlq: |
272 |
.if ${SUBSYS} == server && defined(WITH_DHCP_LQ) |
273 |
.if defined(WITH_DHCP_LDAP) |
274 |
@${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/extra-patch-dlq-ldap |
275 |
.else |
276 |
@${PATCH} ${PATCH_ARGS} < ${PATCHDIR}/extra-patch-dlq |
277 |
.endif |
278 |
.endif |
279 |
|
263 |
# Post-install |
280 |
# Post-install |
264 |
# |
281 |
# |
265 |
|
282 |
|