Changes since 1.2.4: Bugfixes: * The following vulnerabilities have been fixed. See the security advisory for details and a workaround. * The Daintree SNA file parser could overflow a buffer. (Bug 4294) * The SMB and SMB2 dissectors could crash. (Bug 4301) * The IPMI dissector could crash on Windows. (Bug 4319) * Wireshark does not graph rtp streams. (Bug 3801) * Wireshark showing extraneous data in a TCP stream. (Bug 3955) * Wrong decoding of gtp.target identification. (Bug 3974) * TTE dissector bug. (Bug 4247) * Upper case in Lua pref symbol causes Wireshark to crash. (Bug 4255) * OpenBSD 4.5 build fails at epan/dissectors/packet-rpcap.c. (Bug 4258) * Incorrect display of stream data using "Follow tcp stream" option. (Bug 4288) * Custom RADIUS dictionary can cause a crash. (Bug 4316) Updated Protocol Support: * DAP, eDonkey, GTP, IPMI, MIP, RADIUS, RANAP, SMB, SMB2, TCP, TTE, VNC, X.509sat Updated Capture File Support: * Daintree SNA.
54 lines
1.5 KiB
Makefile
54 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.40 2009/12/20 19:25:34 tonnerre Exp $
|
|
|
|
DISTNAME= wireshark-1.2.5
|
|
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"
|