Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Jul 2018 08:37:35 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r473805 - head/security/masscan
Message-ID:  <201807030837.w638bZIH014954@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Tue Jul  3 08:37:35 2018
New Revision: 473805
URL: https://svnweb.freebsd.org/changeset/ports/473805

Log:
  - Switch to more suitable ONLY_FOR_ARCHS
  - Switch to new test framework
  
  Approved by:	portmgr blanket

Modified:
  head/security/masscan/Makefile

Modified: head/security/masscan/Makefile
==============================================================================
--- head/security/masscan/Makefile	Tue Jul  3 08:09:25 2018	(r473804)
+++ head/security/masscan/Makefile	Tue Jul  3 08:37:35 2018	(r473805)
@@ -10,13 +10,8 @@ COMMENT=	Very fast port scanner
 
 LICENSE=	GPLv3
 
-BROKEN_aarch64=		invokes x86 assembler
-BROKEN_armv6=		invokes x86 assembler
-BROKEN_armv7=		invokes x86 assembler
-BROKEN_mips=		invokes x86 assembler
-BROKEN_mips64=		invokes x86 assembler
-BROKEN_sparc64=		invokes x86 assembler
-BROKEN_powerpc64=	invokes x86 assembler
+ONLY_FOR_ARCHS=		i386 amd64
+ONLY_FOR_ARCHS_REASON=	invokes x86 assembler
 
 USES=		gmake
 USE_GITHUB=	yes
@@ -30,14 +25,14 @@ PLIST_FILES=	bin/masscan man/man8/masscan.8.gz
 
 .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000
 BUILD_DEPENDS+=	clang38:lang/clang38
-CC=	clang38
+CC=		clang38
 .endif
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/bin/masscan ${STAGEDIR}${PREFIX}/bin
 	${INSTALL_MAN} ${WRKSRC}/doc/masscan.8 ${STAGEDIR}${MANPREFIX}/man/man8
 
-regression-test: build
+do-test:
 	${WRKSRC}/bin/masscan --selftest
 
 .include <bsd.port.post.mk>



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