From owner-svn-ports-head@freebsd.org Wed Sep 2 14:54:29 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9A9869C876B; Wed, 2 Sep 2015 14:54:29 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8B2A2283; Wed, 2 Sep 2015 14:54:29 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t82EsTaF062313; Wed, 2 Sep 2015 14:54:29 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t82EsTnd062312; Wed, 2 Sep 2015 14:54:29 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201509021454.t82EsTnd062312@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 2 Sep 2015 14:54:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r395852 - head/net/ntp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Sep 2015 14:54:29 -0000 Author: amdmi3 Date: Wed Sep 2 14:54:28 2015 New Revision: 395852 URL: https://svnweb.freebsd.org/changeset/ports/395852 Log: - Switch to USES=libedit as suggested by stage-qa - Switch to options helpers Approved by: portmgr blanket Modified: head/net/ntp/Makefile Modified: head/net/ntp/Makefile ============================================================================== --- head/net/ntp/Makefile Wed Sep 2 14:52:19 2015 (r395851) +++ head/net/ntp/Makefile Wed Sep 2 14:54:28 2015 (r395852) @@ -3,6 +3,7 @@ PORTNAME= ntp PORTVERSION= 4.2.8p3 +PORTREVISION= 1 CATEGORIES= net ipv6 MASTER_SITES= http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ \ http://archive.ntp.org/ntp4/ntp-4.2/ \ @@ -16,7 +17,7 @@ CONFLICTS= ntp-rc-* ntp-devel-* GNU_CONFIGURE= yes OPTIONS_SUB= yes -USES= cpe pathfix shebangfix libtool pkgconfig +USES= cpe pathfix shebangfix libedit libtool pkgconfig LIB_DEPENDS= libevent.so:${PORTSDIR}/devel/libevent2 SHEBANG_FILES= scripts/ntptrace/ntptrace.in \ @@ -37,17 +38,11 @@ NTP_SIGND_CONFIGURE_ENABLE= ntp-signd NTPSNMPD_LIB_DEPENDS= libnetsnmp.so:${PORTSDIR}/net-mgmt/net-snmp NTPSNMPD_CONFIGURE_OFF= --without-ntpsnmpd -.include - -.if ${PORT_OPTIONS:MSSL} -CONFIGURE_ARGS+= --with-openssl-incdir=${OPENSSLINC} \ +SSL_CONFIGURE_ON= --with-openssl-incdir=${OPENSSLINC} \ --with-openssl-libdir=${OPENSSLLIB} -.endif .for D in ${NTP_DRIVERS} -.if ${PORT_OPTIONS:M${D}} -CONFIGURE_ARGS+= --enable-${D} -.endif +${D}_CONFIGURE_ON= --enable-${D} .endfor # XXX Temporary hack. Remember to remove this next commit. @@ -63,4 +58,4 @@ post-install: @cd ${WRKSRC}/html && ${FIND} . -print | \ ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} --quiet ${STAGEDIR}${DOCSDIR} -.include +.include