diff options
author | Sergey Matveychuk <sem@FreeBSD.org> | 2006-09-02 19:40:17 +0000 |
---|---|---|
committer | Sergey Matveychuk <sem@FreeBSD.org> | 2006-09-02 19:40:17 +0000 |
commit | fc3afe641b06d44c4b87ae9ff5340cb08bbcc81b (patch) | |
tree | da4faa557acc5a9a27ef99aaf195ed98e717cf43 /net/isc-dhcp40-server/Makefile | |
parent | 5c2fdda653e7a7edc67728a05a47af53b716c05c (diff) | |
download | ports-fc3afe641b06d44c4b87ae9ff5340cb08bbcc81b.tar.gz ports-fc3afe641b06d44c4b87ae9ff5340cb08bbcc81b.zip |
Update the net/isc-dhcp3-* ports to version 3.0.5rc2.
Changes since version 3.0.5rc1:
* A bug was repaired in fixes to the dhclient, which saught to run the
dhclient-script with the 'EXPIRE' state should it receive a NAK in
response to a REQUEST. The client now iterates the PREINIT state
after the EXPIRE state, so that interfaces that might be configured
'down' can be brought back 'up' and initialized.
* DHCPINFORM handling for clients that properly set ciaddr and come to
the server via a relay agent has been repaired.
PR: ports/102680
Submitted: maintainer
Notes
Notes:
svn path=/head/; revision=171909
Diffstat (limited to 'net/isc-dhcp40-server/Makefile')
-rw-r--r-- | net/isc-dhcp40-server/Makefile | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/net/isc-dhcp40-server/Makefile b/net/isc-dhcp40-server/Makefile index b3cb4ba3290a..f7421f816aa4 100644 --- a/net/isc-dhcp40-server/Makefile +++ b/net/isc-dhcp40-server/Makefile @@ -7,7 +7,8 @@ # PORTNAME= dhcp -PORTVERSION= 3.0.5.r1 +PORTVERSION= 3.0.5.r2 +PORTREVISION= ${DHCP_PORTREVISION} CATEGORIES= net MASTER_SITES= ${MASTER_SITE_ISC} MASTER_SITE_SUBDIR= dhcp dhcp/dhcp-3.0-history @@ -18,6 +19,11 @@ DISTNAME= ${PORTNAME}-${RELEASE}${VERSION}${PATCHLEVEL} MAINTAINER= Joerg.Pulz@frm2.tum.de COMMENT?= The ISC Dynamic Host Configuration Protocol server +PORTREVISION_SERVER= 0 +PORTREVISION_CLIENT= 0 +PORTREVISION_RELAY= 0 +PORTREVISION_DEVEL= 0 + SUBSYS?= server UNIQUENAME= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX} @@ -35,6 +41,17 @@ OPTIONS= DHCP_PARANOIA "add -user, -group and -chroot options" on \ DHCP_LQ "DHCPLEASEQUERY support used by Cisco uBR's" off .endif +# PORTREVISION handling +.if ${SUBSYS} == client +DHCP_PORTREVISION= ${PORTREVISION_CLIENT} +.elif ${SUBSYS} == relay +DHCP_PORTREVISION= ${PORTREVISION_RELAY} +.elif ${SUBSYS} == devel +DHCP_PORTREVISION= ${PORTREVISION_DEVEL} +.else +DHCP_PORTREVISION= ${PORTREVISION_SERVER} +.endif + .include <bsd.port.pre.mk> .if ${SUBSYS} == server && defined(WITH_DHCP_LDAP) |