svn commit: r421620 - branches/2016Q3/sysutils/pefs-kmod

David Naylor dbn at FreeBSD.org
Fri Sep 9 15:10:58 UTC 2016


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>


More information about the svn-ports-branches mailing list