b9245429b3
Patch provided by Martin Wilke via PR 34425. - Changelog A few fixes for OS X. 1) select()ing on a pcap FD doesn't always work. Advice from tcpdump mailing list archive is to put it into non-blocking mode and ignore the select() return value. 2) Added $(LDFLAGS) to link command line in Makefile to have dnstop linked with specific libraries. LDFLAGS will be picked up from the environment. 3) OS X needs to #include <arpa/nameser_compat.h> 2006/04/24 Duane Wessels Adriaan Peeters reported that the list of known TLDs is out-of-date. In particular, the .EU domain is not in the list. 2005/04/05 Duane Wessels Mark Foster found a bug with the source+SLD list. It was being updated for 3RD-level domain names as well. Mark also suggested that the '@' key should display the source+SLD screen, just as '3' and '#' work for 3RD-level.
22 lines
705 B
Makefile
22 lines
705 B
Makefile
# $NetBSD: Makefile,v 1.16 2006/10/08 12:43:38 obache Exp $
|
|
#
|
|
|
|
DISTNAME= dnstop-20060517
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://dns.measurement-factory.com/tools/dnstop/src/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://dns.measurement-factory.com/tools/dnstop/
|
|
COMMENT= Diagnose tcpdump trace for DNS queries/replies
|
|
|
|
INSTALLATION_DIRS= bin man/man8
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/dnstop ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/dnstop.8 ${PREFIX}/man/man8
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/dnstop
|
|
${INSTALL_DATA} ${WRKSRC}/LICENSE ${PREFIX}/share/doc/dnstop
|
|
|
|
.include "../../devel/ncurses/buildlink3.mk"
|
|
.include "../../net/libpcap/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|