11eab90f5b
Changelog: * Cleanups of capture code. * Clear address cache command, thanks to Ronald W. Henderson. * Avoid multiple close event, by Ronald W. Henderson. * Saving window size in preferences dialog, by Ronald W. Henderson. * F11 to make EtherApe fullscreen, by Ronald W. Henderson. * New georgian translation, thanks to Temuri Doghonadze. * Documentation improvments, thanks to Ronald W. Henderson. * IP unknown protocols display now subject to the 'unknown ports' setting. * Smaller improvements and fixes. * One can now export Etherape data to JSON as well as XML. * Export file format is selected in the Preferences dialog. * Export menu entry icon added. * Updated Preferences dialog help and figures. * Man page updates. * XML escaping extended. * Fix for text appearance in these pull downs: Central Node and Capture filter. * Fix for avoiding adding duplicate legend widgets. Now using a hash table. * capture statistics now displayed on one line. * Better nodes and links expiration during low capture rates or for strict capture filters. * Fix for displaying a node prior to its position calculation. https://etherape.sourceforge.io/ PR: 294488 Sponsored by: UNIS Labs
37 lines
951 B
Makefile
37 lines
951 B
Makefile
PORTNAME= etherape
|
|
DISTVERSION= 0.9.22
|
|
CATEGORIES= net-mgmt gnome
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= dnpowers@me.com
|
|
COMMENT= Graphical network traffic monitor tool modeled after Etherman
|
|
WWW= http://etherape.sourceforge.net/
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= itstool:textproc/itstool \
|
|
yelp-tools>=0:textproc/yelp-tools
|
|
LIB_DEPENDS= libpopt.so:devel/popt
|
|
|
|
USES= gettext-runtime gmake gnome iconv localbase pkgconfig
|
|
USE_GNOME= atk cairo gdkpixbuf gtk30 pango
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= pcap_CFLAGS="-I/usr/include" \
|
|
pcap_LIBS="-lpcap"
|
|
LDFLAGS+= -L/usr/lib
|
|
PORTDOCS= AUTHORS ChangeLog FAQ NEWS README README.bugs TODO
|
|
|
|
OPTIONS_DEFINE= DOCS NLS
|
|
OPTIONS_SUB= yes
|
|
DOCS_MAKE_ARGS_OFF= SUBDIRS="src glade m4 po"
|
|
NLS_USES= gettext-tools
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|