Date: Fri, 9 Sep 2016 15:10:57 +0000 (UTC) From: David Naylor <dbn@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r421620 - branches/2016Q3/sysutils/pefs-kmod Message-ID: <201609091510.u89FAvGk035780@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dbn Date: Fri Sep 9 15:10:57 2016 New Revision: 421620 URL: https://svnweb.freebsd.org/changeset/ports/421620 Log: MFH: r419226 - Fix packaging after PAM lib bump (__FreeBSD_version 1100117) PR: 211227 Submitted by: maintainer Approved by: ports-secteam (feld) Deleted: branches/2016Q3/sysutils/pefs-kmod/pkg-plist Modified: branches/2016Q3/sysutils/pefs-kmod/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/sysutils/pefs-kmod/Makefile ============================================================================== --- branches/2016Q3/sysutils/pefs-kmod/Makefile Fri Sep 9 14:23:32 2016 (r421619) +++ branches/2016Q3/sysutils/pefs-kmod/Makefile Fri Sep 9 15:10:57 2016 (r421620) @@ -24,10 +24,22 @@ OPTIONS_DEFINE= AESNI OPTIONS_DEFAULT= AESNI_DESC= Enable AES-NI hardware acceleration +PLIST_FILES= sbin/pefs \ + lib/pam_pefs.so \ + man/man8/pam_pefs.8.gz \ + man/man8/pefs.8.gz \ + /${KMODDIR}/pefs.ko + .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MAESNI} MAKE_ENV+= PEFS_AESNI=yes .endif +.if ${OSVERSION} >= 1100117 +PLIST_FILES+= lib/pam_pefs.so.6 +.else +PLIST_FILES+= lib/pam_pefs.so.5 +.endif + .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609091510.u89FAvGk035780>