mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
43687b1c5d
they are only used on x86. So, remove the restriction to attempt to build on other archs. PR: 235529 Submitted by: Piotr Kubaj Approved by: portmgr (tier-2 blanket)
29 lines
606 B
Makefile
29 lines
606 B
Makefile
# Created by: Chie Taguchi <taguchi.ch@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= masscan
|
|
PORTVERSION= 1.0.4
|
|
CATEGORIES= security
|
|
|
|
MAINTAINER= taguchi.ch@gmail.com
|
|
COMMENT= Very fast port scanner
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USES= gmake
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= robertdavidgraham
|
|
CFLAGS+= -Wno-format
|
|
MAKE_ARGS= SYS=freebsd CC="${CC}" CFLAGS="${CFLAGS}"
|
|
|
|
PLIST_FILES= bin/masscan man/man8/masscan.8.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/masscan ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/doc/masscan.8 ${STAGEDIR}${MANPREFIX}/man/man8
|
|
|
|
do-test:
|
|
${WRKSRC}/bin/masscan --selftest
|
|
|
|
.include <bsd.port.mk>
|