svn commit: r312527 - in head/net: ntp ntp-devel ntp-rc
Cy Schubert
cy at FreeBSD.org
Mon Feb 18 21:17:14 UTC 2013
Author: cy
Date: Mon Feb 18 21:17:12 2013
New Revision: 312527
URL: http://svnweb.freebsd.org/changeset/ports/312527
Log:
Add non-default NTP signed option.
PR: 175918
Modified:
head/net/ntp-devel/Makefile
head/net/ntp-devel/Makefile.inc
head/net/ntp-rc/Makefile
head/net/ntp-rc/Makefile.inc
head/net/ntp/Makefile
head/net/ntp/Makefile.inc
Modified: head/net/ntp-devel/Makefile
==============================================================================
--- head/net/ntp-devel/Makefile Mon Feb 18 21:13:02 2013 (r312526)
+++ head/net/ntp-devel/Makefile Mon Feb 18 21:17:12 2013 (r312527)
@@ -44,6 +44,10 @@ PLIST_SUB+= SSL=""
CONFIGURE_ARGS+= --enable-ipv6
.endif
+.if !defined(WITH_NTP_SIGND)
+CONFIGURE_ARGS+= --enable-ntp-signd
+.endif
+
.if defined(WITH_NTPSNMPD)
PLIST_FILES+= sbin/ntpsnmpd
BUILD_DEPENDS+= ${LOCALBASE}/include/net-snmp/net-snmp-config.h:${PORTSDIR}/net-mgmt/net-snmp
Modified: head/net/ntp-devel/Makefile.inc
==============================================================================
--- head/net/ntp-devel/Makefile.inc Mon Feb 18 21:13:02 2013 (r312526)
+++ head/net/ntp-devel/Makefile.inc Mon Feb 18 21:17:12 2013 (r312527)
@@ -3,6 +3,7 @@
OPTIONS= NTPSNMPD "Build and install ntpsnmpd" OFF \
SSL "Enable SSL" ON \
IPV6 "Enable IPv6" OFF \
+ NTP_SIGND "Enable signed NTP" OFF \
BANCOMM "Enable Datum/Bancomm bc635/VME interface" OFF \
GPSVME "Enable TrueTime GPS receiver/VME interface" OFF \
ACTS "Enable ACTS modem service" OFF \
Modified: head/net/ntp-rc/Makefile
==============================================================================
--- head/net/ntp-rc/Makefile Mon Feb 18 21:13:02 2013 (r312526)
+++ head/net/ntp-rc/Makefile Mon Feb 18 21:17:12 2013 (r312527)
@@ -57,6 +57,10 @@ PLIST_SUB+= SSL=""
CONFIGURE_ARGS+= --enable-ipv6
.endif
+.if !defined(WITH_NTP_SIGND)
+CONFIGURE_ARGS+= --enable-ntp-signd
+.endif
+
.for D in ${NTP_DRIVERS}
.if defined(WITH_${D})
CONFIGURE_ARGS+= --enable-${D}
Modified: head/net/ntp-rc/Makefile.inc
==============================================================================
--- head/net/ntp-rc/Makefile.inc Mon Feb 18 21:13:02 2013 (r312526)
+++ head/net/ntp-rc/Makefile.inc Mon Feb 18 21:17:12 2013 (r312527)
@@ -3,6 +3,7 @@
OPTIONS= NTPSNMPD "Build and install ntpsnmpd" OFF \
SSL "Enable SSL" ON \
IPV6 "Enable IPv6" OFF \
+ NTP_SIGND "Enable signed NTP" OFF \
BANCOMM "Enable Datum/Bancomm bc635/VME interface" OFF \
GPSVME "Enable TrueTime GPS receiver/VME interface" OFF \
ACTS "Enable ACTS modem service" OFF \
Modified: head/net/ntp/Makefile
==============================================================================
--- head/net/ntp/Makefile Mon Feb 18 21:13:02 2013 (r312526)
+++ head/net/ntp/Makefile Mon Feb 18 21:17:12 2013 (r312527)
@@ -56,6 +56,10 @@ PLIST_SUB+= SSL=""
CONFIGURE_ARGS+= --enable-ipv6
.endif
+.if !defined(WITH_NTP_SIGND)
+CONFIGURE_ARGS+= --enable-ntp-signd
+.endif
+
.for D in ${NTP_DRIVERS}
.if defined(WITH_${D})
CONFIGURE_ARGS+= --enable-${D}
Modified: head/net/ntp/Makefile.inc
==============================================================================
--- head/net/ntp/Makefile.inc Mon Feb 18 21:13:02 2013 (r312526)
+++ head/net/ntp/Makefile.inc Mon Feb 18 21:17:12 2013 (r312527)
@@ -3,6 +3,7 @@
OPTIONS= NTPSNMPD "Build and install ntpsnmpd" OFF \
SSL "Enable SSL" ON \
IPV6 "Enable IPv6" OFF \
+ NTP_SIGND "Enable signed NTP" OFF \
BANCOMM "Enable Datum/Bancomm bc635/VME interface" OFF \
GPSVME "Enable TrueTime GPS receiver/VME interface" OFF \
ACTS "Enable ACTS modem service" OFF \
More information about the svn-ports-head
mailing list