From owner-svn-ports-head@freebsd.org Mon Apr 10 16:55:12 2017 Return-Path: Delivered-To: svn-ports-head@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 5A900D36FB5; Mon, 10 Apr 2017 16:55:12 +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 2C6006B3; Mon, 10 Apr 2017 16:55:12 +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 v3AGtBYH038271; Mon, 10 Apr 2017 16:55:11 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3AGtBU8038270; Mon, 10 Apr 2017 16:55:11 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201704101655.v3AGtBU8038270@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Apr 2017 16:55:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r438189 - head/sysutils/pefs-kmod X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Apr 2017 16:55:12 -0000 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