From owner-svn-ports-head@freebsd.org Tue Jul 5 19:32:19 2016 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 081B0B218A6; Tue, 5 Jul 2016 19:32:19 +0000 (UTC) (envelope-from naddy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 CB51C1D3D; Tue, 5 Jul 2016 19:32:18 +0000 (UTC) (envelope-from naddy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u65JWHaQ024240; Tue, 5 Jul 2016 19:32:17 GMT (envelope-from naddy@FreeBSD.org) Received: (from naddy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u65JWH1S024239; Tue, 5 Jul 2016 19:32:17 GMT (envelope-from naddy@FreeBSD.org) Message-Id: <201607051932.u65JWH1S024239@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: naddy set sender to naddy@FreeBSD.org using -f From: Christian Weisgerber Date: Tue, 5 Jul 2016 19:32:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418108 - head/net/openntpd 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.22 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: Tue, 05 Jul 2016 19:32:19 -0000 Author: naddy Date: Tue Jul 5 19:32:17 2016 New Revision: 418108 URL: https://svnweb.freebsd.org/changeset/ports/418108 Log: Minor changes/improvements: * switch to USES=ssl * use the paths set by Mk/Uses/ssl.mk * move post-install to post-stage Submitted by: brnrd Modified: head/net/openntpd/Makefile Modified: head/net/openntpd/Makefile ============================================================================== --- head/net/openntpd/Makefile Tue Jul 5 19:31:56 2016 (r418107) +++ head/net/openntpd/Makefile Tue Jul 5 19:32:17 2016 (r418108) @@ -26,18 +26,17 @@ RESSL_DESC= SSL/TLS support via LibreSS OPTIONS_DEFAULT= RESSL # Requires libtls from LibreSSL -RESSL_USE= openssl=yes -RESSL_VARS= with_openssl_port=yes +RESSL_USES= ssl RESSL_CONFIGURE_WITH= cacert=${LOCALBASE}/etc/ssl/cert.pem -RESSL_CPPFLAGS= -I${LOCALBASE}/include -RESSL_LDFLAGS= -L${LOCALBASE}/lib +RESSL_CPPFLAGS= -I${OPENSSLINC} +RESSL_LDFLAGS= -L${OPENSSLLIB} RESSL_RUN_DEPENDS= ca_root_nss>=0:security/ca_root_nss pre-build: ${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},g' \ ${WRKSRC}/src/ntpd.conf.5 ${WRKSRC}/src/ntpd.8 -post-install: +post-stage: cd ${STAGEDIR}${PREFIX}/etc && ${MV} ntpd.conf ntpd.conf.sample .include