mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
2140215661
PR: 191496 Submitted by: maintainer
51 lines
1.5 KiB
Makefile
51 lines
1.5 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= hping
|
|
PORTVERSION= 3.0.20051105
|
|
CATEGORIES= net security
|
|
MASTER_SITES= http://www.hping.org/ \
|
|
http://200ok.org/distfiles/hping/
|
|
PKGNAMESUFFIX= -devel
|
|
DISTNAME= hping3-20051105
|
|
|
|
MAINTAINER= ecu@200ok.org
|
|
COMMENT= Network auditing tool
|
|
|
|
LIB_DEPENDS= libtcl84.so:${PORTSDIR}/lang/tcl84
|
|
|
|
NO_LATEST_LINK= yes
|
|
CONFLICTS= hping-[0-9]*
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake
|
|
|
|
PLIST_DIRS+= lib/hping
|
|
PLIST_FILES= sbin/hping lib/hping/hpingstdlib.htcl man/man8/hping.8.gz
|
|
PORTDOCS= AS-BACKDOOR HPING2-HOWTO.txt HPING2-IS-OPEN \
|
|
MORE-FUN-WITH-IPID SPOOFED_SCAN.txt APD.txt \
|
|
API.txt HPING3.txt
|
|
|
|
PORTEXAMPLES= README apd.htcl apd2.htcl ciscoios.htcl ciscoios0.htcl \
|
|
cloner.htcl igrp.htcl isn-spectrogram.htcl nat-noise.htcl \
|
|
passivets.htcl ping.htcl raw.htcl show-tcpseq.htcl \
|
|
showled.htcl
|
|
|
|
pre-configure:
|
|
${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|' ${WRKSRC}/configure
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/hping3 ${STAGEDIR}${PREFIX}/sbin/hping
|
|
${INSTALL_MAN} ${WRKSRC}/docs/hping3.8 ${STAGEDIR}${PREFIX}/man/man8/hping.8
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/lib/hping
|
|
${INSTALL_DATA} ${WRKSRC}/lib/hpingstdlib.htcl ${STAGEDIR}${PREFIX}/lib/hping/
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${STAGEDIR}${DOCSDIR}
|
|
.for i in ${PORTEXAMPLES}
|
|
${REINPLACE_CMD} -e \
|
|
's|hpingstdlib.htcl|${PREFIX}/lib/hping/hpingstdlib.htcl|' \
|
|
${WRKSRC}/lib/${i}
|
|
.endfor
|
|
${INSTALL_DATA} ${PORTEXAMPLES:S|^|${WRKSRC}/lib/|} ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|