svn commit: r438189 - head/sysutils/pefs-kmod

Dmitry Marakasov amdmi3 at FreeBSD.org
Mon Apr 10 16:55:12 UTC 2017


Author: amdmi3
Date: Mon Apr 10 16:55:11 2017
New Revision: 438189
URL: https://svnweb.freebsd.org/changeset/ports/438189

Log:
  - Mark broken on DragonFly
  - Always check OPSYS along with OSVERSION
  
  Approved by:	portmgr blanket

Modified:
  head/sysutils/pefs-kmod/Makefile

Modified: head/sysutils/pefs-kmod/Makefile
==============================================================================
--- head/sysutils/pefs-kmod/Makefile	Mon Apr 10 16:44:25 2017	(r438188)
+++ head/sysutils/pefs-kmod/Makefile	Mon Apr 10 16:55:11 2017	(r438189)
@@ -17,7 +17,9 @@ MAKE_ENV=	BINDIR="${PREFIX}/sbin" MANDIR
 		NO_MANCOMPRESS=
 
 ONLY_FOR_ARCHS=	i386 amd64 armv6
-ONLY_FOR_ARCHS_REASON= Untested on any other arch.
+ONLY_FOR_ARCHS_REASON= untested on any other arch
+
+BROKEN_DragonFly=	does not build: don't know how to make vnode_if.h
 
 USES=		kmod uidfix
 
@@ -37,10 +39,12 @@ PLIST_FILES=	sbin/pefs \
 MAKE_ENV+=	PEFS_AESNI=yes
 .endif
 
-.if ${OSVERSION} >= 1100117
+.if ${OPSYS} == FreeBSD
+. if ${OSVERSION} >= 1100117
 PLIST_FILES+=	lib/pam_pefs.so.6
-.else
+. else
 PLIST_FILES+=	lib/pam_pefs.so.5
+. endif
 .endif
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list