From owner-svn-ports-all@freebsd.org Wed Feb 17 20:36:48 2016 Return-Path: Delivered-To: svn-ports-all@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 0393EAAB158; Wed, 17 Feb 2016 20:36:48 +0000 (UTC) (envelope-from mandree@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 B13A01BF1; Wed, 17 Feb 2016 20:36:47 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1HKakwf058216; Wed, 17 Feb 2016 20:36:46 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1HKakaI058214; Wed, 17 Feb 2016 20:36:46 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201602172036.u1HKakaI058214@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Wed, 17 Feb 2016 20:36:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409070 - head/security/easy-rsa X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Feb 2016 20:36:48 -0000 Author: mandree Date: Wed Feb 17 20:36:46 2016 New Revision: 409070 URL: https://svnweb.freebsd.org/changeset/ports/409070 Log: Install openssl-1.0.cnf as well (EasyRSA-3.0 specific). Originally install it as ${DATADIR}/*.example and mark it as @sample in pkg-plist, so that it gets copied to the real file name on installation, and will not be removed if modified by the user. Submitted by: Michele Possamai (e-mail kept private) Modified: head/security/easy-rsa/Makefile head/security/easy-rsa/pkg-plist Modified: head/security/easy-rsa/Makefile ============================================================================== --- head/security/easy-rsa/Makefile Wed Feb 17 20:15:22 2016 (r409069) +++ head/security/easy-rsa/Makefile Wed Feb 17 20:36:46 2016 (r409070) @@ -2,6 +2,7 @@ PORTNAME= easy-rsa DISTVERSION= 3.0.1 +PORTREVISION= 1 CATEGORIES= security net-mgmt MASTER_SITES= https://github.com/OpenVPN/easy-rsa/releases/download/${DISTVERSION}/ DISTNAME= EasyRSA-${DISTVERSION} @@ -29,10 +30,11 @@ SUB_FILES= easyrsa do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKDIR}/easyrsa ${STAGEDIR}${PREFIX}/bin/ ${MKDIR} ${STAGEDIR}${DATADIR}/x509-types/ + ${INSTALL_SCRIPT} ${WRKDIR}/easyrsa ${STAGEDIR}${PREFIX}/bin/ ${INSTALL_SCRIPT} ${WRKSRC}/easyrsa ${STAGEDIR}${DATADIR}/easyrsa.real - ${INSTALL_DATA} ${WRKSRC}/vars.example ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/vars.example ${STAGEDIR}${DATADIR}/ + ${INSTALL_DATA} ${WRKSRC}/openssl-1.0.cnf ${STAGEDIR}${DATADIR}/openssl-1.0.cnf.example (cd ${WRKSRC}/x509-types/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/x509-types/) do-install-DOCS-on: Modified: head/security/easy-rsa/pkg-plist ============================================================================== --- head/security/easy-rsa/pkg-plist Wed Feb 17 20:15:22 2016 (r409069) +++ head/security/easy-rsa/pkg-plist Wed Feb 17 20:36:46 2016 (r409070) @@ -1,3 +1,4 @@ bin/easyrsa %%DATADIR%%/easyrsa.real +@sample %%DATADIR%%/openssl-1.0.cnf.example %%DATADIR%%/openssl-1.0.cnf @sample %%DATADIR%%/vars.example %%DATADIR%%/vars