From owner-svn-ports-all@freebsd.org Thu Oct 15 21:00:22 2015 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 17561A16F5B; Thu, 15 Oct 2015 21:00:22 +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 D3443AB9; Thu, 15 Oct 2015 21:00:21 +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 t9FL0KfL041424; Thu, 15 Oct 2015 21:00:20 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9FL0K80041408; Thu, 15 Oct 2015 21:00:20 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510152100.t9FL0K80041408@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 15 Oct 2015 21:00:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399413 - head/security/pwauth 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: Thu, 15 Oct 2015 21:00:22 -0000 Author: amdmi3 Date: Thu Oct 15 21:00:20 2015 New Revision: 399413 URL: https://svnweb.freebsd.org/changeset/ports/399413 Log: - Handle permissions in plist - Unsilence install Approved by: portmgr blanket Modified: head/security/pwauth/Makefile Modified: head/security/pwauth/Makefile ============================================================================== --- head/security/pwauth/Makefile Thu Oct 15 20:58:43 2015 (r399412) +++ head/security/pwauth/Makefile Thu Oct 15 21:00:20 2015 (r399413) @@ -12,7 +12,8 @@ COMMENT= Unix Web Authenticator LICENSE= BSD3CLAUSE -PLIST_FILES= bin/pwauth bin/checkfaillog +PLIST_FILES= "@(,,4555) bin/pwauth" \ + bin/checkfaillog ALL_TARGET= pwauth checkfaillog MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" LIB="-lcrypt -lpam" @@ -25,8 +26,7 @@ post-patch: s/%%MINUID%%/${MINUID}/" ${WRKSRC}/config.h do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/pwauth ${STAGEDIR}${PREFIX}/bin - @${INSTALL_PROGRAM} ${WRKSRC}/checkfaillog ${STAGEDIR}${PREFIX}/bin - @${CHMOD} u=rxs ${STAGEDIR}${PREFIX}/bin/pwauth + ${INSTALL_PROGRAM} ${WRKSRC}/pwauth ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/checkfaillog ${STAGEDIR}${PREFIX}/bin .include