openbsd-ports/security/portscanner/Makefile
sthen 88ea72915d Change SEPARATE_BUILD=(concurrent|simple) to Yes; bsd.port.mk doesn't
make a distinction between these.  ok aja@ dcoppa@
2012-03-29 13:38:12 +00:00

33 lines
801 B
Makefile

# $OpenBSD: Makefile,v 1.17 2012/03/29 13:38:49 sthen Exp $
# $FreeBSD: Makefile,v 1.5 1999/01/26 22:19:07 billf Exp $
COMMENT= simple and easy to use TCP port scanner
DISTNAME= PortScanner-1.2
PKGNAME= ${DISTNAME:L}
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_PACKETSTORM:=UNIX/scanners/}
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= c
SEPARATE_BUILD= Yes
USE_GROFF = Yes
NO_REGRESS= Yes
do-build:
${CC} ${CFLAGS} -Wall ${WRKSRC}/portscanner.c \
-o ${WRKBUILD}/portscanner
@sed -e s#portscan#portscanner#g ${WRKSRC}/portscan.1 > \
${WRKBUILD}/portscanner.1
do-install:
${INSTALL_PROGRAM} ${WRKBUILD}/portscanner ${PREFIX}/bin
${INSTALL_DATA} ${WRKBUILD}/portscanner.1 ${PREFIX}/man/man1
.include <bsd.port.mk>