Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Feb 2013 21:17:13 +0000 (UTC)
From:      Cy Schubert <cy@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r312527 - in head/net: ntp ntp-devel ntp-rc
Message-ID:  <201302182117.r1ILHDX7020815@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302182117.r1ILHDX7020815>