749980ec00
Changes since previous version: SI6 Networks' IPv6 Toolkit v1.4.1 * frag6: Fixed bug that prevented Ethernet header from being filled A bug in the code caused Ethernet frames to go on te wire without any of their header fields completed. * All: Use of library to avoid code replication An "libipv6" library was created, such that common functions do not need to be replicated for each tool. ni6, ns6, rs6, and tcp6 now employ such library. pkgsrc changes: * address6 and its man page are no longer installed * extend the Makefile changes to include the correct linkage for rs6 and tcp6 i.e. include the libipv6 object mentioned above
33 lines
1,001 B
Makefile
33 lines
1,001 B
Makefile
# $NetBSD: Makefile,v 1.9 2013/09/09 06:42:44 agc Exp $
|
|
|
|
DISTNAME= ipv6toolkit-v1.4.1
|
|
PKGNAME= ${DISTNAME:C/-v/-/}
|
|
CATEGORIES= security net
|
|
MASTER_SITES= http://www.si6networks.com/tools/ipv6toolkit/
|
|
|
|
MAINTAINER= agc@NetBSD.org
|
|
HOMEPAGE= http://www.si6networks.com/tools/ipv6toolkit
|
|
COMMENT= IPv6 security assessment and troubleshooting tool
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
AUTO_MKDIRS= yes
|
|
|
|
BINS= flow6 frag6 icmp6 jumbo6 na6 ni6 ns6 ra6 rd6 rs6 scan6 tcp6
|
|
MAN1= flow6.1 frag6.1 icmp6.1 jumbo6.1 na6.1 ni6.1 ns6.1
|
|
MAN1+= ra6.1 rd6.1 rs6.1 scan6.1 tcp6.1
|
|
MAN5= ipv6toolkit.conf.5
|
|
|
|
do-install:
|
|
for f in ${BINS}; do \
|
|
${INSTALL_PROGRAM} ${WRKSRC}/$$f ${DESTDIR}${PREFIX}/bin/$$f; \
|
|
done
|
|
for f in ${MAN1}; do \
|
|
${INSTALL_MAN} ${WRKSRC}/manuals/$$f ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/$$f; \
|
|
done
|
|
for f in ${MAN5}; do \
|
|
${INSTALL_MAN} ${WRKSRC}/manuals/$$f ${DESTDIR}${PREFIX}/${PKGMANDIR}/man5/$$f; \
|
|
done
|
|
|
|
.include "../../net/libpcap/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|