mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Update to 3.0RC2.
PR: 26753 Submitted by: maintainer
This commit is contained in:
parent
f2ccfe531f
commit
05a179bf6e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=41795
15 changed files with 145 additions and 45 deletions
|
@ -7,12 +7,12 @@
|
|||
#
|
||||
|
||||
PORTNAME= dhcp
|
||||
PORTVERSION= 3.0.r1.1
|
||||
PORTVERSION= 3.0.r2
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= ftp://ftp.isc.org/isc/dhcp/
|
||||
PKGNAMEPREFIX= isc-
|
||||
PKGNAMESUFFIX= 3
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r/rc/:R}pl${PORTVERSION:E}
|
||||
DISTNAME= ${PORTNAME}-${RELEASE}${VERSION}${PATCHLEVEL}
|
||||
|
||||
MAINTAINER= clefevre@poboxes.com
|
||||
|
||||
|
@ -32,6 +32,26 @@ MAN8= dhclient.8 dhclient-script.8 dhcpd.8 dhcrelay.8
|
|||
# Local variables
|
||||
#
|
||||
|
||||
# for instance, possible version formats are, in order:
|
||||
# 1.2.r3.4 (or 1.2.b3.4), 1.2.r3 (or 1.2.b3), 1.2.3, 1.2
|
||||
# which have to become:
|
||||
# 1.2rc3pl4 (or 1.2beta3pl4), 1.2rc3 (or 1.2beta3), 1.2pl3, 1.2
|
||||
VERSION=
|
||||
PATCHLEVEL=
|
||||
.if ${PORTVERSION:R:E:M[br]*} != ""
|
||||
RELEASE= ${PORTVERSION:R:R}
|
||||
VERSION= ${PORTVERSION:R:E:S/b/beta/:S/r/rc/}
|
||||
PATCHLEVEL= pl${PORTVERSION:E}
|
||||
.elif ${PORTVERSION:E:M[br]*} != ""
|
||||
RELEASE= ${PORTVERSION:R}
|
||||
VERSION= ${PORTVERSION:E:S/b/beta/:S/r/rc/}
|
||||
.elif ${PORTVERSION:R:E} != ""
|
||||
RELEASE= ${PORTVERSION:R}
|
||||
PATCHLEVEL= pl${PORTVERSION:E}
|
||||
.else
|
||||
RELEASE= ${PORTVERSION}
|
||||
.endif
|
||||
|
||||
PATCH_SUBDIRS= common minires dst omapip server client relay dhcpctl
|
||||
|
||||
BIN_FILES= dhclient dhcpd dhcrelay
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (dhcp-3.0rc1pl1.tar.gz) = 93b7e388b9229605684235bb30080773
|
||||
MD5 (dhcp-3.0rc2.tar.gz) = 411e8e14291cd4158abcad5bf1bafa1d
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
--- client/scripts/freebsd.orig Thu Mar 22 07:59:28 2001
|
||||
+++ client/scripts/freebsd Sat Mar 24 04:50:11 2001
|
||||
--- client/scripts/freebsd.orig Fri Apr 20 22:01:14 2001
|
||||
+++ client/scripts/freebsd Sat Apr 21 19:01:59 2001
|
||||
@@ -16,17 +16,17 @@
|
||||
# Must be used on exit. Invokes the local dhcp client exit hooks, if any.
|
||||
exit_with_hooks() {
|
||||
exit_status=$1
|
||||
- if [ -x /etc/dhclient-exit-hooks ]; then
|
||||
- if [ -f /etc/dhclient-exit-hooks ]; then
|
||||
- . /etc/dhclient-exit-hooks
|
||||
+ if [ -x !!PREFIX!!/etc/dhclient-exit-hooks ]; then
|
||||
+ if [ -f !!PREFIX!!/etc/dhclient-exit-hooks ]; then
|
||||
+ . !!PREFIX!!/etc/dhclient-exit-hooks
|
||||
fi
|
||||
# probably should do something with exit status of the local script
|
||||
|
@ -14,8 +14,8 @@
|
|||
}
|
||||
|
||||
# Invoke the local dhcp client enter hooks, if they exist.
|
||||
-if [ -x /etc/dhclient-enter-hooks ]; then
|
||||
+if [ -x !!PREFIX!!/etc/dhclient-enter-hooks ]; then
|
||||
-if [ -f /etc/dhclient-enter-hooks ]; then
|
||||
+if [ -f !!PREFIX!!/etc/dhclient-enter-hooks ]; then
|
||||
exit_status=0
|
||||
- . /etc/dhclient-enter-hooks
|
||||
+ . !!PREFIX!!/etc/dhclient-enter-hooks
|
||||
|
|
|
@ -7,12 +7,12 @@
|
|||
#
|
||||
|
||||
PORTNAME= dhcp
|
||||
PORTVERSION= 3.0.r1.1
|
||||
PORTVERSION= 3.0.r2
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= ftp://ftp.isc.org/isc/dhcp/
|
||||
PKGNAMEPREFIX= isc-
|
||||
PKGNAMESUFFIX= 3
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r/rc/:R}pl${PORTVERSION:E}
|
||||
DISTNAME= ${PORTNAME}-${RELEASE}${VERSION}${PATCHLEVEL}
|
||||
|
||||
MAINTAINER= clefevre@poboxes.com
|
||||
|
||||
|
@ -32,6 +32,26 @@ MAN8= dhclient.8 dhclient-script.8 dhcpd.8 dhcrelay.8
|
|||
# Local variables
|
||||
#
|
||||
|
||||
# for instance, possible version formats are, in order:
|
||||
# 1.2.r3.4 (or 1.2.b3.4), 1.2.r3 (or 1.2.b3), 1.2.3, 1.2
|
||||
# which have to become:
|
||||
# 1.2rc3pl4 (or 1.2beta3pl4), 1.2rc3 (or 1.2beta3), 1.2pl3, 1.2
|
||||
VERSION=
|
||||
PATCHLEVEL=
|
||||
.if ${PORTVERSION:R:E:M[br]*} != ""
|
||||
RELEASE= ${PORTVERSION:R:R}
|
||||
VERSION= ${PORTVERSION:R:E:S/b/beta/:S/r/rc/}
|
||||
PATCHLEVEL= pl${PORTVERSION:E}
|
||||
.elif ${PORTVERSION:E:M[br]*} != ""
|
||||
RELEASE= ${PORTVERSION:R}
|
||||
VERSION= ${PORTVERSION:E:S/b/beta/:S/r/rc/}
|
||||
.elif ${PORTVERSION:R:E} != ""
|
||||
RELEASE= ${PORTVERSION:R}
|
||||
PATCHLEVEL= pl${PORTVERSION:E}
|
||||
.else
|
||||
RELEASE= ${PORTVERSION}
|
||||
.endif
|
||||
|
||||
PATCH_SUBDIRS= common minires dst omapip server client relay dhcpctl
|
||||
|
||||
BIN_FILES= dhclient dhcpd dhcrelay
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (dhcp-3.0rc1pl1.tar.gz) = 93b7e388b9229605684235bb30080773
|
||||
MD5 (dhcp-3.0rc2.tar.gz) = 411e8e14291cd4158abcad5bf1bafa1d
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
--- client/scripts/freebsd.orig Thu Mar 22 07:59:28 2001
|
||||
+++ client/scripts/freebsd Sat Mar 24 04:50:11 2001
|
||||
--- client/scripts/freebsd.orig Fri Apr 20 22:01:14 2001
|
||||
+++ client/scripts/freebsd Sat Apr 21 19:01:59 2001
|
||||
@@ -16,17 +16,17 @@
|
||||
# Must be used on exit. Invokes the local dhcp client exit hooks, if any.
|
||||
exit_with_hooks() {
|
||||
exit_status=$1
|
||||
- if [ -x /etc/dhclient-exit-hooks ]; then
|
||||
- if [ -f /etc/dhclient-exit-hooks ]; then
|
||||
- . /etc/dhclient-exit-hooks
|
||||
+ if [ -x !!PREFIX!!/etc/dhclient-exit-hooks ]; then
|
||||
+ if [ -f !!PREFIX!!/etc/dhclient-exit-hooks ]; then
|
||||
+ . !!PREFIX!!/etc/dhclient-exit-hooks
|
||||
fi
|
||||
# probably should do something with exit status of the local script
|
||||
|
@ -14,8 +14,8 @@
|
|||
}
|
||||
|
||||
# Invoke the local dhcp client enter hooks, if they exist.
|
||||
-if [ -x /etc/dhclient-enter-hooks ]; then
|
||||
+if [ -x !!PREFIX!!/etc/dhclient-enter-hooks ]; then
|
||||
-if [ -f /etc/dhclient-enter-hooks ]; then
|
||||
+if [ -f !!PREFIX!!/etc/dhclient-enter-hooks ]; then
|
||||
exit_status=0
|
||||
- . /etc/dhclient-enter-hooks
|
||||
+ . !!PREFIX!!/etc/dhclient-enter-hooks
|
||||
|
|
|
@ -7,12 +7,12 @@
|
|||
#
|
||||
|
||||
PORTNAME= dhcp
|
||||
PORTVERSION= 3.0.r1.1
|
||||
PORTVERSION= 3.0.r2
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= ftp://ftp.isc.org/isc/dhcp/
|
||||
PKGNAMEPREFIX= isc-
|
||||
PKGNAMESUFFIX= 3
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r/rc/:R}pl${PORTVERSION:E}
|
||||
DISTNAME= ${PORTNAME}-${RELEASE}${VERSION}${PATCHLEVEL}
|
||||
|
||||
MAINTAINER= clefevre@poboxes.com
|
||||
|
||||
|
@ -32,6 +32,26 @@ MAN8= dhclient.8 dhclient-script.8 dhcpd.8 dhcrelay.8
|
|||
# Local variables
|
||||
#
|
||||
|
||||
# for instance, possible version formats are, in order:
|
||||
# 1.2.r3.4 (or 1.2.b3.4), 1.2.r3 (or 1.2.b3), 1.2.3, 1.2
|
||||
# which have to become:
|
||||
# 1.2rc3pl4 (or 1.2beta3pl4), 1.2rc3 (or 1.2beta3), 1.2pl3, 1.2
|
||||
VERSION=
|
||||
PATCHLEVEL=
|
||||
.if ${PORTVERSION:R:E:M[br]*} != ""
|
||||
RELEASE= ${PORTVERSION:R:R}
|
||||
VERSION= ${PORTVERSION:R:E:S/b/beta/:S/r/rc/}
|
||||
PATCHLEVEL= pl${PORTVERSION:E}
|
||||
.elif ${PORTVERSION:E:M[br]*} != ""
|
||||
RELEASE= ${PORTVERSION:R}
|
||||
VERSION= ${PORTVERSION:E:S/b/beta/:S/r/rc/}
|
||||
.elif ${PORTVERSION:R:E} != ""
|
||||
RELEASE= ${PORTVERSION:R}
|
||||
PATCHLEVEL= pl${PORTVERSION:E}
|
||||
.else
|
||||
RELEASE= ${PORTVERSION}
|
||||
.endif
|
||||
|
||||
PATCH_SUBDIRS= common minires dst omapip server client relay dhcpctl
|
||||
|
||||
BIN_FILES= dhclient dhcpd dhcrelay
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (dhcp-3.0rc1pl1.tar.gz) = 93b7e388b9229605684235bb30080773
|
||||
MD5 (dhcp-3.0rc2.tar.gz) = 411e8e14291cd4158abcad5bf1bafa1d
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
--- client/scripts/freebsd.orig Thu Mar 22 07:59:28 2001
|
||||
+++ client/scripts/freebsd Sat Mar 24 04:50:11 2001
|
||||
--- client/scripts/freebsd.orig Fri Apr 20 22:01:14 2001
|
||||
+++ client/scripts/freebsd Sat Apr 21 19:01:59 2001
|
||||
@@ -16,17 +16,17 @@
|
||||
# Must be used on exit. Invokes the local dhcp client exit hooks, if any.
|
||||
exit_with_hooks() {
|
||||
exit_status=$1
|
||||
- if [ -x /etc/dhclient-exit-hooks ]; then
|
||||
- if [ -f /etc/dhclient-exit-hooks ]; then
|
||||
- . /etc/dhclient-exit-hooks
|
||||
+ if [ -x !!PREFIX!!/etc/dhclient-exit-hooks ]; then
|
||||
+ if [ -f !!PREFIX!!/etc/dhclient-exit-hooks ]; then
|
||||
+ . !!PREFIX!!/etc/dhclient-exit-hooks
|
||||
fi
|
||||
# probably should do something with exit status of the local script
|
||||
|
@ -14,8 +14,8 @@
|
|||
}
|
||||
|
||||
# Invoke the local dhcp client enter hooks, if they exist.
|
||||
-if [ -x /etc/dhclient-enter-hooks ]; then
|
||||
+if [ -x !!PREFIX!!/etc/dhclient-enter-hooks ]; then
|
||||
-if [ -f /etc/dhclient-enter-hooks ]; then
|
||||
+if [ -f !!PREFIX!!/etc/dhclient-enter-hooks ]; then
|
||||
exit_status=0
|
||||
- . /etc/dhclient-enter-hooks
|
||||
+ . !!PREFIX!!/etc/dhclient-enter-hooks
|
||||
|
|
|
@ -7,12 +7,12 @@
|
|||
#
|
||||
|
||||
PORTNAME= dhcp
|
||||
PORTVERSION= 3.0.r1.1
|
||||
PORTVERSION= 3.0.r2
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= ftp://ftp.isc.org/isc/dhcp/
|
||||
PKGNAMEPREFIX= isc-
|
||||
PKGNAMESUFFIX= 3
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r/rc/:R}pl${PORTVERSION:E}
|
||||
DISTNAME= ${PORTNAME}-${RELEASE}${VERSION}${PATCHLEVEL}
|
||||
|
||||
MAINTAINER= clefevre@poboxes.com
|
||||
|
||||
|
@ -32,6 +32,26 @@ MAN8= dhclient.8 dhclient-script.8 dhcpd.8 dhcrelay.8
|
|||
# Local variables
|
||||
#
|
||||
|
||||
# for instance, possible version formats are, in order:
|
||||
# 1.2.r3.4 (or 1.2.b3.4), 1.2.r3 (or 1.2.b3), 1.2.3, 1.2
|
||||
# which have to become:
|
||||
# 1.2rc3pl4 (or 1.2beta3pl4), 1.2rc3 (or 1.2beta3), 1.2pl3, 1.2
|
||||
VERSION=
|
||||
PATCHLEVEL=
|
||||
.if ${PORTVERSION:R:E:M[br]*} != ""
|
||||
RELEASE= ${PORTVERSION:R:R}
|
||||
VERSION= ${PORTVERSION:R:E:S/b/beta/:S/r/rc/}
|
||||
PATCHLEVEL= pl${PORTVERSION:E}
|
||||
.elif ${PORTVERSION:E:M[br]*} != ""
|
||||
RELEASE= ${PORTVERSION:R}
|
||||
VERSION= ${PORTVERSION:E:S/b/beta/:S/r/rc/}
|
||||
.elif ${PORTVERSION:R:E} != ""
|
||||
RELEASE= ${PORTVERSION:R}
|
||||
PATCHLEVEL= pl${PORTVERSION:E}
|
||||
.else
|
||||
RELEASE= ${PORTVERSION}
|
||||
.endif
|
||||
|
||||
PATCH_SUBDIRS= common minires dst omapip server client relay dhcpctl
|
||||
|
||||
BIN_FILES= dhclient dhcpd dhcrelay
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (dhcp-3.0rc1pl1.tar.gz) = 93b7e388b9229605684235bb30080773
|
||||
MD5 (dhcp-3.0rc2.tar.gz) = 411e8e14291cd4158abcad5bf1bafa1d
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
--- client/scripts/freebsd.orig Thu Mar 22 07:59:28 2001
|
||||
+++ client/scripts/freebsd Sat Mar 24 04:50:11 2001
|
||||
--- client/scripts/freebsd.orig Fri Apr 20 22:01:14 2001
|
||||
+++ client/scripts/freebsd Sat Apr 21 19:01:59 2001
|
||||
@@ -16,17 +16,17 @@
|
||||
# Must be used on exit. Invokes the local dhcp client exit hooks, if any.
|
||||
exit_with_hooks() {
|
||||
exit_status=$1
|
||||
- if [ -x /etc/dhclient-exit-hooks ]; then
|
||||
- if [ -f /etc/dhclient-exit-hooks ]; then
|
||||
- . /etc/dhclient-exit-hooks
|
||||
+ if [ -x !!PREFIX!!/etc/dhclient-exit-hooks ]; then
|
||||
+ if [ -f !!PREFIX!!/etc/dhclient-exit-hooks ]; then
|
||||
+ . !!PREFIX!!/etc/dhclient-exit-hooks
|
||||
fi
|
||||
# probably should do something with exit status of the local script
|
||||
|
@ -14,8 +14,8 @@
|
|||
}
|
||||
|
||||
# Invoke the local dhcp client enter hooks, if they exist.
|
||||
-if [ -x /etc/dhclient-enter-hooks ]; then
|
||||
+if [ -x !!PREFIX!!/etc/dhclient-enter-hooks ]; then
|
||||
-if [ -f /etc/dhclient-enter-hooks ]; then
|
||||
+if [ -f !!PREFIX!!/etc/dhclient-enter-hooks ]; then
|
||||
exit_status=0
|
||||
- . /etc/dhclient-enter-hooks
|
||||
+ . !!PREFIX!!/etc/dhclient-enter-hooks
|
||||
|
|
|
@ -7,12 +7,12 @@
|
|||
#
|
||||
|
||||
PORTNAME= dhcp
|
||||
PORTVERSION= 3.0.r1.1
|
||||
PORTVERSION= 3.0.r2
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= ftp://ftp.isc.org/isc/dhcp/
|
||||
PKGNAMEPREFIX= isc-
|
||||
PKGNAMESUFFIX= 3
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r/rc/:R}pl${PORTVERSION:E}
|
||||
DISTNAME= ${PORTNAME}-${RELEASE}${VERSION}${PATCHLEVEL}
|
||||
|
||||
MAINTAINER= clefevre@poboxes.com
|
||||
|
||||
|
@ -32,6 +32,26 @@ MAN8= dhclient.8 dhclient-script.8 dhcpd.8 dhcrelay.8
|
|||
# Local variables
|
||||
#
|
||||
|
||||
# for instance, possible version formats are, in order:
|
||||
# 1.2.r3.4 (or 1.2.b3.4), 1.2.r3 (or 1.2.b3), 1.2.3, 1.2
|
||||
# which have to become:
|
||||
# 1.2rc3pl4 (or 1.2beta3pl4), 1.2rc3 (or 1.2beta3), 1.2pl3, 1.2
|
||||
VERSION=
|
||||
PATCHLEVEL=
|
||||
.if ${PORTVERSION:R:E:M[br]*} != ""
|
||||
RELEASE= ${PORTVERSION:R:R}
|
||||
VERSION= ${PORTVERSION:R:E:S/b/beta/:S/r/rc/}
|
||||
PATCHLEVEL= pl${PORTVERSION:E}
|
||||
.elif ${PORTVERSION:E:M[br]*} != ""
|
||||
RELEASE= ${PORTVERSION:R}
|
||||
VERSION= ${PORTVERSION:E:S/b/beta/:S/r/rc/}
|
||||
.elif ${PORTVERSION:R:E} != ""
|
||||
RELEASE= ${PORTVERSION:R}
|
||||
PATCHLEVEL= pl${PORTVERSION:E}
|
||||
.else
|
||||
RELEASE= ${PORTVERSION}
|
||||
.endif
|
||||
|
||||
PATCH_SUBDIRS= common minires dst omapip server client relay dhcpctl
|
||||
|
||||
BIN_FILES= dhclient dhcpd dhcrelay
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (dhcp-3.0rc1pl1.tar.gz) = 93b7e388b9229605684235bb30080773
|
||||
MD5 (dhcp-3.0rc2.tar.gz) = 411e8e14291cd4158abcad5bf1bafa1d
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
--- client/scripts/freebsd.orig Thu Mar 22 07:59:28 2001
|
||||
+++ client/scripts/freebsd Sat Mar 24 04:50:11 2001
|
||||
--- client/scripts/freebsd.orig Fri Apr 20 22:01:14 2001
|
||||
+++ client/scripts/freebsd Sat Apr 21 19:01:59 2001
|
||||
@@ -16,17 +16,17 @@
|
||||
# Must be used on exit. Invokes the local dhcp client exit hooks, if any.
|
||||
exit_with_hooks() {
|
||||
exit_status=$1
|
||||
- if [ -x /etc/dhclient-exit-hooks ]; then
|
||||
- if [ -f /etc/dhclient-exit-hooks ]; then
|
||||
- . /etc/dhclient-exit-hooks
|
||||
+ if [ -x !!PREFIX!!/etc/dhclient-exit-hooks ]; then
|
||||
+ if [ -f !!PREFIX!!/etc/dhclient-exit-hooks ]; then
|
||||
+ . !!PREFIX!!/etc/dhclient-exit-hooks
|
||||
fi
|
||||
# probably should do something with exit status of the local script
|
||||
|
@ -14,8 +14,8 @@
|
|||
}
|
||||
|
||||
# Invoke the local dhcp client enter hooks, if they exist.
|
||||
-if [ -x /etc/dhclient-enter-hooks ]; then
|
||||
+if [ -x !!PREFIX!!/etc/dhclient-enter-hooks ]; then
|
||||
-if [ -f /etc/dhclient-enter-hooks ]; then
|
||||
+if [ -f !!PREFIX!!/etc/dhclient-enter-hooks ]; then
|
||||
exit_status=0
|
||||
- . /etc/dhclient-enter-hooks
|
||||
+ . !!PREFIX!!/etc/dhclient-enter-hooks
|
||||
|
|
Loading…
Add table
Reference in a new issue