755b829414
* Added option to fingerprint SYNACK packets * Added option to output more verbose fingerprint info to outfile * Added a ton of new fingerprints (1214 SYN/SYNACK fingerprints) * Added option to run Disco on interfaces without an assigned IP Approved by: fjoe (mentor) (implicit)
32 lines
671 B
Makefile
32 lines
671 B
Makefile
# New ports collection makefile for: disco
|
|
# Date created: 08.06.2003
|
|
# Whom: Kirill Ponomarew <ponomarew@oberon.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= disco
|
|
PORTVERSION= 1.2
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.altmode.com/disco/
|
|
|
|
MAINTAINER= krion@FreeBSD.org
|
|
COMMENT= IP discovery and fingerprinting utility
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LIBS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for i in README
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|