blob: 8489f9f3229199e781f4075c6e344e6771efdfa9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# New ports collection makefile for: portscanner
# Date created: 11 August 1998
# Whom: Bill Fumerola <billf@chc-chimes.com>
#
# $FreeBSD$
#
PORTNAME= portscanner
PORTVERSION= 1.2
PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_PACKETSTORM}
MASTER_SITE_SUBDIR= UNIX/scanners
DISTNAME= PortScanner-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= A simple and easy to use TCP port scanner
PLIST_FILES= bin/portscanner
do-build:
@ ${CC} -o ${WRKSRC}/portscanner ${CFLAGS} ${WRKSRC}/portscanner.c
do-install:
@ ${INSTALL_PROGRAM} ${WRKSRC}/portscanner ${PREFIX}/bin
.include <bsd.port.mk>
|