Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 8 Sep 2016 14:53:50 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r421559 - in head/security/trousers: . files
Message-ID:  <201609081453.u88Eropm083268@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



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