summaryrefslogtreecommitdiff
path: root/net/etherape/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2022-08-11Bump all dependent packages of wayland (belatedly)gutteridge1-2/+2
The package changed with the addition of its libepoll-shim dependency. Otherwise, we can get: ERROR: libepoll-shim>=0.0.20210418 is not installed; can't buildlink files.
2021-12-08revbump for icu and libffiadam1-1/+2
2021-08-10etherape: update to 0.9.20nia1-2/+2
Changelog for EtherApe Overview of changes in EtherApe 0.9.20 (Sunday, May 16, 2021): Link fading now follows the averaging timer, giving a better feel of packet flow. Improved xml output. Now contains also links and global protocol statistics. Several preferences were removed or merged in a general tidying. Preference upgrade is automatic, but if EtherApe detects obsolete parameters the user will be asked to review and confirm the new settings. Compatibility Warnings: * the link-level xml element is now called 'link-id', instead of simply 'link' as in the past releases. 'link' xml elements now refer to node-to-node statistics. * removed node-link ratio preference. * merged link protocol and traffic timeout preferences. * merged node protocol and traffic timeout preferences. Changes summary: * fix for ticket #100, thanks to Salam for reporting it. * diagram refresh command, thanks to Ronald W. Henderson * patch to remove artifact when resizing, thanks to Ronald W. Henderson * reorder keyboard shortcuts, thanks to Ronald W. Henderson * sort by port on protocol windows, thanks to Ronald W. Henderson * xml output now containes also link and global protocols statistics. * link fades with averaging times * node-link ratio slider removed, ratio always fixed at 1 (links sizes are aligned with nodes) * improve statistics repeatability esp. when setting max-delay=0 (useful for tests or just to calcolate quickly statistics of a dump file). * new no-display mode (command line only), disables diagram updates (again, mostly for testing). * merged link protocol and traffic timeouts.
2021-05-02*: Use the tools framework for itstoolnia1-3/+2
Now it should be more obvious when a package needs it as a dependency, as it will fail loudly if it isn't declared as a tool. While here, some duplicate dependencies on itstool were removed from the MATE packages
2021-04-09etherape: Update to 0.9.19nia1-3/+2
Overview of changes in EtherApe 0.9.19 (): This is primarily a bugfix release, but thanks to AlexL adds also a Russian translation. Changes summary: * better sizing of connections lines, thanks to Ronald Henderson. * fix for ui crash by "MandatoryField" * fix a crash happening when the capture process wasn't able to set the filter. Thanks to Benjamin Woods for providing a vital backtrace. * russian translation and fixes by AlexL * fix for debian bug #958408 from Bernhard Übelacker Thanks from Patrick Matthäi for sending the patch upstream
2020-08-17*: revbump after fontconfig bl3 changes (libuuid removal)leot1-2/+2
2020-03-10librsvg: update bl3.mk to remove libcroco in rust casewiz1-2/+2
recursive bump for the dependency change
2020-03-08*: recursive bump for libffiwiz1-1/+2
2020-01-20etherape: Update to 0.9.18nia1-22/+15
Overview of changes in EtherApe 0.9.18 (Sunday, June 3, 2018): EtherApe now is a pure GTK 3 application, with canvas supplied by GooCanvas (https://wiki.gnome.org/Projects/GooCanvas). While GooCanvas itself is in maintenance mode, is still the simpler canvas library available and with an API almost identical to gnome-canvas, too! Longer term, EtherApe ui should be completely redesigned and modernized, but this is for another day. Changes summary: * EtherApe ported to GTK3 using GooCanvas instead of the obsolete GnomeCanvas. Overview of changes in EtherApe 0.9.17 (Thursday, April 5, 2018): This is a bugfix release, because a bug made 0.9.16 still runtime-dependent on gnomeui and other gnome 2 libraries. Changes summary: * EtherApe now requires Gtk 2.24 * fixed a bug making libglade load gnome2 libraries * Sometimes node/links windows were freezing. Overview of changes in EtherApe 0.9.16 (Sunday, January 14, 2018): Several distributions are phasing out Gnome 2 libraries and EtherApe needs to update as well. Unfortunately, this mean dropping support for older distributions, for example CENTOS 5 and 6. At this time the EtherApe executable can still be built for those distributions, but not the project as a whole. This is an interim release, where the only Gnome 2 component is gnome-canvas. Apart of that, EtherApe is now a GTK2 application. Work is underway to replace gnome-canvas with another component. Documentation is now based on yelp-tools instead of Scroolkeeper/Rarian. Many thanks to Patrick Matthäi for packaging EtherApe for Debian and helping to keep this tool current. Changes summary: * require only gnome-canvas, not gnome-ui. Based on the work of Arch Linux packager bgyorgy (Balló György). Thanks! * migrate from deprecated gnome-doc-utils to yelp-tools. Unfortunately this change rules out older distributions * updated German translation, thanks to Chris Leick Overview of changes in EtherApe 0.9.15 (Friday, February 10, 2017): The central node ring setting now accepts multiple node specifiers (separated by any combination of spaces and/or commas), and also now understands glob syntax, so you can put for example 10.0.0.0/24, *.mydomain.tld, somehost.otherdomain.tld and it will do what you'd expect. There is now a compile-time configure option ('--with-c-ares', disabled by default) to enable DNS resolution via the c-ares library, supplanting EtherApe's built-in multithreaded gethostbyaddr(3)-based resolver. This is a fully non-blocking DNS library and thus has potential for better performance while using only a single background resolver thread, but also means that name-lookup is strictly DNS-based, and will thus not take /etc/hosts, NIS, or other name services into account. There is a slightly backwards-incompatible change in the syntax of the node-position file used with the '-P' flag added in release 0.9.14. It now uses the same CIDR notation plus hostname-globbing syntax used by the central node ring setting (instead of POSIX regular expressions). This provides simpler and more consistent syntax with essentially the same real-world utility, but may require some small changes to existing node-position files. Some examples: Old (regex) New (CIDR+glob) =============== =============== 172.16.2.[0-9]* 172.16.2.0/24 .*.mydomain.com *.mydomain.com fe80:.* fe80::/16 Additionally, each line of the node-position file may now include multiple such node-matching patterns (separated by spaces and/or commas as with the central node ring setting), so a single line might look like: *.mydomain.com, 10.0.0.0/24 3 (to put all nodes matching the given domain or CIDR range into column 3). As a security feature (privilege separation), packet-capture operations are now isolated in a separate background process. The new '-Z' flag can be used to specify a user to run the main (foreground) process as. Changes summary: * New option to use c-ares for DNS resolution. * Multiple node/subnets and glob syntax now supported for central node ring. * Node-matching syntax for '-P' flag's file now uses CIDR notation and hostname-globbing instead of regexes. * Multiple patterns can now be given on a single line of the node-position ('-P') file. * The columnar-layout ('-P') code has been changed to re-adjust the spacing of nodes within a column when the number of nodes decreases. The 10-column limit has also been removed. * The background-image feature introduced in 0.9.14 can now be turned off via a preference check-box. * The background of the protocol legend is now black so that lighter colors (e.g. yellow) are more readable. * There is now an option to display packet-capture statistics from libpcap in the main window (hover the mouse over them for an explanation in the status bar). * The show/hide state of the toolbar, protocol legend, and status bar are now preserved along with other preferences in the user's config file. * New '-Z' flag (or '--relinquish-privileges') can be used to run most processing as an unprivileged user. Overview of changes in EtherApe 0.9.14 (Saturday February 06, 2016): EtherApe now users the system /etc/services file instead of its own. While this change make some customizations a bit harder, it guarantees an up-to-date services file. Note to packagers: /etc/etherape is not needed anymore. Central node option now undestands CIDR notation, allowing for a central ring of nodes, thanks to Zev Weiss. Static background image, courtesy of Glenn Feunteun. Nodes can be optionally arranged as columns, thanks to David Goldfarb. Changes summary: * autoconf updated to 2.69 * fixed incorrect WLAN control frames decoding * fix UTF-8 encoding of several files, thanks to StrPt. * read system services file instead of EtherApe one, thanks to Zev Weiss. * fix race condition on exit, thanks to Zev Weiss * central ring option, thanks to Zev Weiss * tweaks to preference windows to better work with tiling managers, thanks to Zev Weiss. * static background image (Glenn Feunteun) * arrange nodes in 'columns' (David Goldfarb) Overview of changes in EtherApe 0.9.13 (Sun May 05, 2013): Central node option, useful for displaying routers or proxies. Translations and documentation updates, plus some fixes. Changes summary: * Optional central node, based on work of Javier Fernandez-Sanguino Peña. * re-enabled full-screen mode, thanks to nrvale0 * Updated spanish translation, thanks to Javier Fernandez-Sanguino Peña. * Added German translation, and fixed typos, thanks to Chris Leick. * Updated documentation.
2020-01-18all: migrate several HOMEPAGEs to httpsrillig1-2/+2
pkglint --only "https instead of http" -r -F With manual adjustments afterwards since pkglint 19.4.4 fixed a few indentations in unrelated lines. This mainly affects projects hosted at SourceForce, as well as freedesktop.org, CTAN and GNU.
2020-01-18*: Recursive revision bump for openssl 1.1.1.jperkin1-2/+2
2019-07-21*: recursive bump for gdk-pixbuf2-2.38.1wiz1-2/+2
2018-11-29Revbump for libcanberra gstreamer change.prlw11-2/+2
2018-11-14Revbump after cairo 1.16.0 update.kleink1-2/+2
2018-11-12Recursive revbump from hardbuzz-2.1.1ryoon1-2/+2
2018-04-16Recursive bump for new fribidi dependency in pango.wiz1-2/+2
2018-03-12Recursive bumps for fontconfig and libzip dependency changes.wiz1-2/+2
2018-01-28Bump PKGREVISION for gdbm shlib major bumpwiz1-2/+2
2017-11-23recursive bump for libxkbcommon removal from at-spi2-corewiz1-2/+2
2017-02-12Recursive revbump from fonts/harfbuzzryoon1-2/+2
2017-02-06Recursive bump for harfbuzz's new graphite2 dependency.wiz1-2/+2
2016-08-03Revbump after graphics/gd updateadam1-2/+2
2016-03-05Bump PKGREVISION for security/openssl ABI bump.jperkin1-2/+2
2015-05-27Reset MAINTAINER, resigned ages ago.wiz1-2/+2
2015-04-25Recursive revbump following MesaLib update, categories g through n.tnn1-2/+2
2014-05-05Recursive revbump from x11/pixmanryoon1-2/+2
Fix PR pkg/48777
2014-02-12Recursive PKGREVISION bump for OpenSSL API version bump.tron1-2/+2
2014-01-29LICENSE=gnu-gpl-v2 # or laterobache1-1/+2
2014-01-29localedir is defuled as usual rule now.obache1-3/+1
2014-01-28Use GNU_CONFIGURE_LIBDIR for --libdir.obache1-2/+2
2014-01-01Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump.wiz1-2/+2
2013-10-10Recursive revbump from pango-1.36.0ryoon1-2/+2
2013-10-09recursive bump for libmng-2.0.2 shlib major bump and dependency changewiz1-2/+2
2013-09-02Revbump after cairo updateadam1-2/+2
2013-06-12Remove GNU_CONFIGURE_LIBDIR.wiz1-2/+2
Rationale: undocumented, easily replaced with "CONFIGURE_ARGS+=--libdir=" and only used by 10 packages.
2013-06-06Bump PKGREVISION for libXft changes for NetBSD native X support onwiz1-2/+2
NetBSD 6, requested by tron.
2013-06-04Try to fix the fallout caused by the fix for PR pkg/47882. Part 3:tron1-2/+2
Recursively bump package revisions again after the "freetype2" and "fontconfig" handling was fixed.
2013-06-03Bump freetype2 and fontconfig dependencies to current pkgsrc versions,wiz1-2/+2
to address issues with NetBSD-6(and earlier)'s fontconfig not being new enough for pango. While doing that, also bump freetype2 dependency to current pkgsrc version. Suggested by tron in PR 47882
2013-02-16Recursive bump for png-1.6.wiz1-2/+2
2013-02-06PKGREVISION bumps for the security/openssl 1.0.1d update.jperkin1-2/+2
2013-02-06PKGREVISION bumps for net/libpcap update.jperkin1-2/+2
2013-01-26Revbump after graphics/jpeg and textproc/icuadam1-2/+2
2012-10-23Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-10-08Revbump after updating graphics/pangoadam1-2/+2
2012-10-02Mass recursive bump after the dependence fix of the "cairo" packagetron1-2/+2
requested by Thomas Klausner.
2012-09-15recursive bump from libffi shlib major bumpobache1-2/+2
(additionaly, reset PKGREVISION of qt4-* sub packages from base qt4 update)
2012-09-07Revbump after updating graphics/cairoadam1-2/+2
2012-06-14Recursive PKGREVISION bump for libxml2 buildlink addition.sbd1-2/+2
2012-03-03Recursive bump for pcre-8.30* (shlib major change)wiz1-2/+2
2012-02-06Revbump forwiz1-2/+2
a) tiff update to 4.0 (shlib major change) b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk) Enjoy.