aboutsummaryrefslogtreecommitdiffstats
path: root/security/l5
diff options
context:
space:
mode:
authorrm <rm@FreeBSD.org>2016-04-03 00:24:15 +0800
committerrm <rm@FreeBSD.org>2016-04-03 00:24:15 +0800
commit83ec3754ee7dfa1613226253b35cb8c53d29cf0e (patch)
tree43cc232fd51df02d16abf230716b9f75e35ed14f /security/l5
parent52f77a466df45cf2d4e65ab4b1d050c16a714af7 (diff)
downloadfreebsd-ports-graphics-83ec3754ee7dfa1613226253b35cb8c53d29cf0e.tar.gz
freebsd-ports-graphics-83ec3754ee7dfa1613226253b35cb8c53d29cf0e.tar.zst
freebsd-ports-graphics-83ec3754ee7dfa1613226253b35cb8c53d29cf0e.zip
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.
Diffstat (limited to 'security/l5')
-rw-r--r--security/l5/Makefile11
1 files changed, 4 insertions, 7 deletions
diff --git a/security/l5/Makefile b/security/l5/Makefile
index 6241ccf2343..2429a44fe11 100644
--- a/security/l5/Makefile
+++ b/security/l5/Makefile
@@ -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>