Bug fixes: - SNMPv3 Engine ID registration. (Bug 2426) - Open file dialog always displayed when clicking anywhere on Wireshark. (Bug 2478) - tshark reports wrong number of bytes on big dumpfiles with -z io,stat. (Bug 3205) - Negative INTEGER number displayed as positive number in SNMP dissector. (Bug 3230) - Add support for FT_BOOLEAN fields to wslua FieldInfo. (Bug 4049) - Wireshark crashes w/ GLib error when trying to play RTP stream. (Bug 4119) - Windows 2000 support has been restored. (Bug 4176) - Wrong dissection on be_cell_id_list for bssmap. (Bug 4437) - I/O Graph dropdown boxes not working correctly. (Bug 4487) - Runtime Error when right-clicking field and selecting "Filter Field Reference". (Bug 4522) - In GSM SMS PDU TPVPF showing wrong. (Bug 4524) - Profinet: May be wrong defined byte meaning. (Bug 4525) - GLib-CRITICAL ** Message. (Bug 4547) - Certain EDP display filters trigger Wireshark/tshark runtime error. (Bug 4563) - Some NCP frames trigger "Dissector bug, protocol NCP". (Bug 4565) - The encapsulation abbreviation "bluetooth-h4" is ambiguous.(Bug 4613) Updated Protocol Support: - BSSMAP, DMP, GSM SMS, LDSS, NCP, PN/IO, PPP, SIP, SNMP Requested by Alistair Crooks.
54 lines
1.5 KiB
Makefile
54 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.43 2010/04/04 11:40:25 tron Exp $
|
|
|
|
DISTNAME= wireshark-1.2.7
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.wireshark.org/download/src/ \
|
|
${MASTER_SITE_SOURCEFORGE:=wireshark/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
OWNER= tron@NetBSD.org
|
|
HOMEPAGE= http://www.wireshark.org/
|
|
COMMENT= Network protocol analyzer
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
CONFLICTS+= ethereal-[0-9]*
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_TOOLS+= gmake perl pkg-config
|
|
|
|
USE_LIBTOOL= YES
|
|
SHLIBTOOL_OVERRIDE= # empty
|
|
CHECK_PORTABILITY_SKIP+= packaging/macosx/*/*
|
|
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ARGS+= --enable-static=no
|
|
CONFIGURE_ARGS+= --enable-threads
|
|
CONFIGURE_ARGS+= --with-ssl=${SSLBASE:Q}
|
|
CONFIGURE_ARGS+= --with-pcap=${BUILDLINK_PREFIX.libpcap}
|
|
CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib}
|
|
CONFIGURE_ARGS+= --with-pcre=${BUILDLINK_PREFIX.pcre}
|
|
|
|
PTHREAD_OPTS+= require
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.include "options.mk"
|
|
|
|
.if !empty(MACHINE_PLATFORM:MDarwin-[567].*-*)
|
|
USE_BUILTIN.libpcap= no
|
|
.endif
|
|
|
|
# wireshark no longer builds with NetBSD 3.x provided zlib
|
|
BUILDLINK_API_DEPENDS.zlib=zlib>=1.2.1
|
|
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../devel/pcre/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../net/libpcap/buildlink3.mk"
|
|
.include "../../devel/libsmi/buildlink3.mk"
|
|
.include "../../security/gnutls/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|