6866f42193
-- New dissectors include SUA Light, HCLNFSD, Rquota. Many other dissectors were updated and bug-fixed. The wiretap library can now read Etherpeek files, and write NetMon 2.x files. Capture filters and display filters are kept in separate dialogues/files to help minimize confusion. A new "Decode As" feature allows some run-time configuration of which dissectors are called for a particular packet. You can now click on a byte in the hex dump and the appropriate field in the protocol tree will be selected. The display filter code was re-written, and some syntax changed (esp. for boolean variables).
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.43 2001/03/06 19:50:51 jakob Exp $
|
|
|
|
DISTNAME= ethereal-0.8.16
|
|
CATEGORIES= net x11
|
|
NEED_VERSION= 1.305
|
|
|
|
MASTER_SITES= http://www.ethereal.com/distribution/ \
|
|
http://ethereal.zing.org/distribution/ \
|
|
http://ethereal.boehm.org/distribution/ \
|
|
http://www.ethereal.com/distribution/old-versions/ \
|
|
http://ethereal.zing.org/distribution/old-versions/ \
|
|
http://ethereal.boehm.org/distribution/old-versions/
|
|
|
|
HOMEPAGE= http://www.ethereal.com/
|
|
|
|
LIB_DEPENDS= gtk.1.2::x11/gtk+
|
|
BUILD_DEPENDS= python::lang/python
|
|
|
|
MAINTAINER= Jakob Schlyter <jakob@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
USE_X11= Yes
|
|
SYSCONFDIR= ${PREFIX}/share/ethereal
|
|
SEPARATE_BUILD= concurrent
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
FLAVORS= snmp
|
|
|
|
FLAVOR?=
|
|
.if ${FLAVOR:L} == "snmp"
|
|
CONFIGURE_ARGS+= --enable-snmp
|
|
CONFIGURE_ENV+= LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" LIBS="-lsnmp -lcrypto"
|
|
BUILD_DEPENDS+= ${PREFIX}/lib/libsnmp.a::net/ucd-snmp
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-snmp
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKBUILD}/editcap.1 ${PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKBUILD}/ethereal.1 ${PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKBUILD}/tethereal.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|