aboutsummaryrefslogtreecommitdiffstats
path: root/net-mgmt/darkstat
Commit message (Collapse)AuthorAgeFilesLines
* - Update to 3.0.719amdmi32015-05-272-5/+5
| | | | | | | | | | | | | | Changes: - Implement tracking of remote ports: shows which ports the host is making outgoing connections to. Long time feature request. - Bugfix: when the capture interface goes down, exit instead of busy-looping forever. - Fix "clock error" due to machine reboot. - SIGUSR1 now resets the time and bytes reported on the graphs page. - Account for all IP protocols. - Change the default ports_max to only twice the default ports_keep. PR: 200425 Submitted by: emikulic@gmail.com (maintainer)
* Convert some more USE_BZIP2 to USES=tar:bzip2adamw2014-07-301-1/+1
| | | | Approved by: portmgr (not really, but touches unstaged ports)
* - update to 3.0.718 [1]jgh2014-01-272-12/+6
| | | | | | | | - while here update to staging support PR: 186117 Submitted by: emikulic@gmail.com (maintainer) Changes: http://unix4lyfe.org/darkstat/changelog.txt
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-211-0/+1
| | | | net-mgmt)
* net-mgmt/darkstat: update to 3.0.717wg2013-08-142-3/+3
| | | | | | | | | - Update to 3.0.717 Changes: http://unix4lyfe.org/darkstat/changelog.txt PR: ports/181277 Submitted by: Emil Mikulic <emikulic gmail.com> (maintainer)
* net-mgmt/darkstat: update to 3.0.716wg2013-08-093-14/+13
| | | | | | | | | | | | - Update to 3.0.716 [1] - Set new upstream url (WWW) - Trim Makefile header - Remove MAKE_JOBS_SAFE (now default) - NOPORTDOCS -> PORT_OPTIONS:MDOCS - Remove Author line and swtich from tab to space in pkg-descr PR: ports/181139 Submitted by: Emil Mikulic <emikulic gmail.com> (maintainer)
* - Update to 3.0.715wen2012-03-023-5/+5
| | | | | PR: ports/165578 Submitted by: Emil Mikulic <emikulic@gmail.com> (maintainer)
* In the rc.d scripts, change assignments to rcvar to use thedougb2012-01-141-1/+1
| | | | | | | | | | | literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other.
* The vast majority of pkg-descr files had the following format when theydougb2011-10-241-3/+1
| | | | | | | | | | | | | | | | had both lines: Author: ... WWW: .... So standardize on that, and move them to the end of the file when necessary. Also fix some more whitespace, and remove more "signature tags" of varying forms, like -- name, etc. s/AUTHOR/Author/ A few other various formatting issues
* - Update to 3.0.714culot2011-06-072-4/+4
| | | | | PR: ports/157683 Submitted by: Emil Mikulic <emikulic@gmail.com> (maintainer)
* Remove painful examples of foo="", with particular prejudice againstdougb2011-05-151-1/+1
| | | | | | | | | | | | | | | constructions that parse out to [ -z "$foo" ] && foo="" These are bad examples that get copied and pasted into new code, so the hope is that with less bad examples there will be less need for me to bring this up in review. In a few of these files all that were changed were comments so that next time I search for these patterns I won't trip on the file for no reason. In a few places, add $FreeBSD$ No functional changes, so no PORTREVISION bumps
* - Get Rid MD5 supportmiwi2011-03-201-1/+0
|
* Begin the process of deprecating sysutils/rc_subr bydougb2010-03-271-1/+1
| | | | s#. %%RC_SUBR%%#. /etc/rc.subr#
* - Update to 3.0.713miwi2010-03-212-5/+6
| | | | | | | - Enable MAKE_JOBS_SAFE PR: 144820 Submitted by: Emil Mikulic <emikulic@gmail.com> (maintainer)
* Fix a few "bad example" problems in the rc.d scripts that have beendougb2009-07-161-1/+0
| | | | | | | | | | | | | | | | | | | | propogated by copy and paste. 1. Primarily the "empty variable" default assignment, which is mostly ${name}_flags="", but fix a few others as well. 2. Where they are not already documented, add the existence of the _flags (or other deleted empties) option to the comments, and in some cases add comments from scratch. 3. Replace things that look like: prefix=%%PREFIX%% command=${prefix}/sbin/foo to just use %%PREFIX%%. In many cases the $prefix variable is only used once, and in some cases it is not used at all. 4. In a few cases remove ${name}_flags from command_args 5. Remove a long-stale comment about putting the port's rc.d script in /etc/rc.d (which is no longer necessary). No PORTREVISION bumps because all of these changes are noops.
* - Update to 3.0.712beech2008-12-063-16/+9
| | | | | | | - Use PORTDOCS and remove pkg-plist PR: ports/129450 Submitted by: Emil Mikulic <emikulic@gmail.com> (maintainer)
* Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.rafan2008-08-211-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Specifically, newer autoconf (> 2.13) has different semantic of the configure target. In short, one should use --build=CONFIGURE_TARGET instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning and the old semantic may be removed in later autoconf releases. To workaround this issue, many ports hack the CONFIGURE_TARGET variable so that it contains the ``--build='' prefix. To solve this issue, under the fact that some ports still have configure script generated by the old autoconf, we use runtime detection in the do-configure target so that the proper argument can be used. Changes to Mk/*: - Add runtime detection magic in bsd.port.mk - Remove CONFIGURE_TARGET hack in various bsd.*.mk - USE_GNOME=gnometarget is now an no-op Changes to individual ports, other than removing the CONFIGURE_TARGET hack: = pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables) - comms/gnuradio - science/abinit - science/elmer-fem - science/elmer-matc - science/elmer-meshgen2d - science/elmerfront - science/elmerpost = use x86_64 as ARCH - devel/g-wrap = other changes - print/magicfilter GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf Total # of ports modified: 1,027 Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes) PR: 126524 (obsoletes 52917) Submitted by: rafan Tested on: two pointyhat 7-amd64 exp runs (by pav) Approved by: portmgr (pav)
* - Update to 3.0.711.araujo2008-08-122-4/+4
| | | | | PR: ports/126393 Submitted by: Emil Mikulic <emikulic@gmail.com> (maintainer)
* - Update to 3.0.708rafan2008-06-103-6/+9
| | | | | | | - Update maintainer's mail PR: ports/124413 Submitted by: Emil Mikulic <emil at cs.rmit.edu.au> (maintainer)
* - Update to 3.0.707miwi2007-10-063-4/+65
| | | | | PR: 116869 Submitted by: Emil Mikulic <emil@cs.rmit.edu.au> (maintainer)
* - Set --mandir and --infodir in CONFIGURE_ARGS if the configure scriptrafan2007-07-231-1/+0
| | | | | | | | | | | | | | | | | | supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run
* - Update to 3.0.619miwi2007-04-304-22/+7
| | | | | PR: 112241 Submitted by: Emil Mikulic <emil@cs.rmit.edu.au> (maintainer)
* - update to 3.0.540clsung2006-08-093-5/+21
| | | | | | | | - fix build on 4.X PR: ports/101545 Submitted by: maintainer (Emil Mikulic) Reviewed by: clsung
* - update to 3.0.524clsung2006-07-034-40/+11
| | | | | | | | - darkstat 3 is almost a complete rewrite of v2 and greatly improves speed, features, and reliability. PR: ports/99714 Submitted by: maintanier (Emil Mikulic)
* SHA256ifyedwin2006-02-011-0/+1
| | | | Approved by: krion@
* At Kris's request, back out the MACHINE_ARCH spelling correction untilobrien2005-04-121-1/+1
| | | | after 5.4-RELEASE.
* Assist getting more ports working on AMD64 by obeying theobrien2005-04-111-1/+1
| | | | Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
* SIZEify (maintainer timeout)trevor2004-03-311-0/+1
|
* Restore Emil Mikulik as maintainer. He sent me his new e-mailtrevor2004-03-191-1/+1
| | | | address.
* E-mail to the maintainer bounced:trevor2004-03-181-1/+1
| | | | | <emikulic@optushome.com.au>: host mail.optusnet.com.au[211.29.132.250] said: 553 5.3.0 <emikulic@optushome.com.au>... No such user
* Say hello to the new "net-mgmt" category. There are probably morewollman2004-02-231-1/+1
| | | | | | | ports that belong here than the ones I have identified and moved in this, first, pass. Approved in principle by: marcus
* Add USE_GETTEXT and bump PORTREVISION.marcus2004-02-041-1/+2
| | | | | Submitted by: trevor Tested by: bento
* Now gettext 0.12.1 is gettext-old.trevor2004-01-241-1/+1
|
* - Update to 2.6 [1]sergei2003-11-083-31/+41
| | | | | | | | | - Add WITHOUT_NLS knob [1] - Fix libintl detection if ${LOCALBASE} != /usr/local [2] - Use DOCSDIR in pkg-plist PR: 59034 [1] Submitted by: maintainer [1], sergei [2]
* Bump the PORTREVISION for the ports directly affected by the gettext upgrade.marcus2003-08-271-0/+1
| | | | Prodded by: kris
* Chase the libintl.so shared lib version.marcus2003-08-251-1/+1
|
* De-pkg-comment.knu2003-02-212-1/+1
|
* maintainer update port: net/darkstat to 2.5edwin2003-01-303-2/+3
| | | | | PR: ports/47340 Submitted by: Emil Mikulic <emikulic@optushome.com.au>
* Update to 2.4.petef2003-01-032-2/+2
| | | | | PR: 46388 Submitted by: maintainer
* Upgrade to 2.3.obraun2002-11-012-2/+2
| | | | | PR: ports/44805 Submitted by: mintainer
* * Upgrade to 2.2.obraun2002-10-063-3/+7
| | | | | | | * Add another master site.. PR: 43284 Submitted by: maintainer
* Upgrade to 2.1dwcjr2002-08-123-6/+9
| | | | | PR: 41549 Submitted by: maintainer
* Chase shlib rev of devel/gettextade2002-08-021-1/+1
| | | | | Submitted by: lots and lots Pointy hat to: ade
* Update to 2.0.anders2002-07-153-4/+4
| | | | Submitted by: maintainer
* Update to 1.31.anders2002-07-014-7/+14
| | | | | | Assign maintainership to the author. Submitted by: Emil Mikulic <emikulic@optushome.com.au>
* Update to 1.21.anders2002-05-022-2/+2
|
* Add darkstat, a ntop-like network statistics gatherer.anders2002-02-255-0/+48