Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 Apr 2016 16:24:15 +0000 (UTC)
From:      Ruslan Makhmatkhanov <rm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r412417 - head/security/l5
Message-ID:  <201604021624.u32GOFTc051756@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.pre.mk>
-
-.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 <bsd.port.post.mk>
+.include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201604021624.u32GOFTc051756>