From owner-svn-ports-head@freebsd.org Sat Apr 2 16:24:16 2016 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 4BE6EAEBC74; Sat, 2 Apr 2016 16:24:16 +0000 (UTC) (envelope-from rm@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 1985F1CD7; Sat, 2 Apr 2016 16:24:16 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u32GOFIl051757; Sat, 2 Apr 2016 16:24:15 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u32GOFTc051756; Sat, 2 Apr 2016 16:24:15 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201604021624.u32GOFTc051756@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Sat, 2 Apr 2016 16:24:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412417 - head/security/l5 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.21 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: Sat, 02 Apr 2016 16:24:16 -0000 Author: rm Date: Sat Apr 2 16:24:15 2016 New Revision: 412417 URL: https://svnweb.freebsd.org/changeset/ports/412417 Log: security/l5: modernize port a bit - replace EXTRACT_SUFX with USES equivalent - use modern way of defining BROKEN to avoid using of bsd.port.pre.mk No functional changes, so no PORTREVISION bump is required. Modified: head/security/l5/Makefile Modified: head/security/l5/Makefile ============================================================================== --- head/security/l5/Makefile Sat Apr 2 16:22:48 2016 (r412416) +++ head/security/l5/Makefile Sat Apr 2 16:24:15 2016 (r412417) @@ -6,11 +6,12 @@ PORTVERSION= 1.2 CATEGORIES= security sysutils MASTER_SITES= http://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/l5/ DISTNAME= L5 -EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= File Integrity Assessment Tool +USES= tar:tgz + NO_WRKSUBDIR= yes ALL_TARGET= freebsd @@ -19,15 +20,11 @@ PORTDOCS= README OPTIONS_DEFINE= DOCS -.include - -.if ${ARCH} == 'amd64' -BROKEN= incorrect runtime output -.endif +BROKEN_amd64= incorrect runtime output do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} -.include +.include