From owner-svn-ports-all@freebsd.org Thu Sep 8 14:53:51 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 F19B5BD1DCA; Thu, 8 Sep 2016 14:53:51 +0000 (UTC) (envelope-from amdmi3@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 A6A58FF3; Thu, 8 Sep 2016 14:53:51 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u88EroaS083270; Thu, 8 Sep 2016 14:53:50 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u88Eropm083268; Thu, 8 Sep 2016 14:53:50 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201609081453.u88Eropm083268@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 8 Sep 2016 14:53:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421559 - in head/security/trousers: . files 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.23 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: Thu, 08 Sep 2016 14:53:52 -0000 Author: amdmi3 Date: Thu Sep 8 14:53:50 2016 New Revision: 421559 URL: https://svnweb.freebsd.org/changeset/ports/421559 Log: - Fix command in pkg-message - While here, switch to USES=ssl and silence mkdir PR: 205649 Submitted by: teksimian@gmail.com Approved by: maintainer timeout (hrs, 8 months) Modified: head/security/trousers/Makefile head/security/trousers/files/pkg-message.in Modified: head/security/trousers/Makefile ============================================================================== --- head/security/trousers/Makefile Thu Sep 8 14:19:46 2016 (r421558) +++ head/security/trousers/Makefile Thu Sep 8 14:53:50 2016 (r421559) @@ -3,6 +3,7 @@ PORTNAME= trousers PORTVERSION= 0.3.13 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= SF @@ -17,9 +18,8 @@ LICENSE_PERMS= dist-mirror dist-sell pkg BUILD_DEPENDS= tpm-emulator>=0.7.4_1:emulators/tpm-emulator RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= dos2unix alias autoreconf gmake iconv libtool pkgconfig +USES= dos2unix alias autoreconf gmake iconv libtool pkgconfig ssl DOS2UNIX_GLOB= *.h *.c -USE_OPENSSL= YES USE_LDCONFIG= YES USE_RC_SUBR= tcsd INSTALL_TARGET= install-strip @@ -44,6 +44,6 @@ DEBUG_CONFIGURE_ENABLE= debug post-install: ${INSTALL_DATA} \ ${WRKSRC}/dist/tcsd.conf ${STAGEDIR}${PREFIX}/etc/tcsd.conf.sample - ${MKDIR} ${STAGEDIR}${PREFIX}/var/lib/tpm + @${MKDIR} ${STAGEDIR}${PREFIX}/var/lib/tpm .include Modified: head/security/trousers/files/pkg-message.in ============================================================================== --- head/security/trousers/files/pkg-message.in Thu Sep 8 14:19:46 2016 (r421558) +++ head/security/trousers/files/pkg-message.in Thu Sep 8 14:53:50 2016 (r421559) @@ -13,4 +13,4 @@ tpmd_enable="YES" To use TPM, add your_account to '%%GROUPS%%' group like following: -# pw groupadd %%GROUPS%% -m your_account +# pw groupmod %%GROUPS%% -m your_account