49f14fd2e3
-- Pointed out by: Horacio <homega@wanadoo.es>
34 lines
842 B
Makefile
34 lines
842 B
Makefile
# $OpenBSD: Makefile,v 1.11 2002/01/15 00:34:19 brad 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
|
|
NEED_VERSION= 1.500
|
|
MASTER_SITES= http://www.ameth.org/~veilleux/PortScan/
|
|
|
|
MAINTAINER= Brad Smith <brad@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
|
|
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>
|