svn commit: r395328 - in head/net-mgmt/tcptrack: . files

Xin LI delphij at FreeBSD.org
Wed Aug 26 00:30:38 UTC 2015


Author: delphij
Date: Wed Aug 26 00:30:36 2015
New Revision: 395328
URL: https://svnweb.freebsd.org/changeset/ports/395328

Log:
   - Add more MASTERSITE;
   - Fix a bug revealed by clang 3.7 [1]
   - Give maintainership to submitter [2];
  
  PR:		ports/202535 [1], ports/202658 [2]
  Submitted by:	dim [1], Chris Hutchinson [2]

Added:
  head/net-mgmt/tcptrack/files/patch-IPAddress.h   (contents, props changed)
Modified:
  head/net-mgmt/tcptrack/Makefile
  head/net-mgmt/tcptrack/pkg-descr

Modified: head/net-mgmt/tcptrack/Makefile
==============================================================================
--- head/net-mgmt/tcptrack/Makefile	Wed Aug 26 00:23:39 2015	(r395327)
+++ head/net-mgmt/tcptrack/Makefile	Wed Aug 26 00:30:36 2015	(r395328)
@@ -3,12 +3,13 @@
 
 PORTNAME=	tcptrack
 PORTVERSION=	1.4.2
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	net-mgmt
-MASTER_SITES=	http://pkgs.fedoraproject.org/repo/pkgs/tcptrack/tcptrack-1.4.2.tar.gz/dacf71a6b5310caf1203a2171b598610/
+MASTER_SITES=	http://BSDforge.com/projects/source/net-mgmt/tcptrack/ \
+		http://pkgs.fedoraproject.org/repo/pkgs/tcptrack/tcptrack-1.4.2.tar.gz/dacf71a6b5310caf1203a2171b598610/
 
-MAINTAINER=	ports at FreeBSD.org
-COMMENT=	Packet sniffer which displays TCP information like top(1)
+MAINTAINER=	portmaster at BSDforge.com
+COMMENT=	Packet sniffer that displays TCP information like top(1)
 
 LICENSE=	LGPL21
 

Added: head/net-mgmt/tcptrack/files/patch-IPAddress.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/tcptrack/files/patch-IPAddress.h	Wed Aug 26 00:30:36 2015	(r395328)
@@ -0,0 +1,11 @@
+--- src/IPAddress.h.orig	2010-09-29 03:23:24.000000000 +0200
++++ src/IPAddress.h	2015-08-20 23:35:26.583907000 +0200
+@@ -16,7 +16,7 @@ public:
+ 
+ 	virtual int GetType() const = 0;
+ 	virtual bool operator==( const IPAddress & ) const = 0;
+-	virtual bool operator!=( const IPAddress & addr ) const { return !operator!=(addr); }
++	virtual bool operator!=( const IPAddress & addr ) const { return !operator==(addr); }
+ 	virtual char * ptr() const = 0;
+ 	virtual uint32_t hash() const = 0;
+ 	virtual IPAddress* Clone() const = 0;

Modified: head/net-mgmt/tcptrack/pkg-descr
==============================================================================
--- head/net-mgmt/tcptrack/pkg-descr	Wed Aug 26 00:23:39 2015	(r395327)
+++ head/net-mgmt/tcptrack/pkg-descr	Wed Aug 26 00:30:36 2015	(r395328)
@@ -1,8 +1,8 @@
-tcptrack is a sniffer which displays information about TCP connections it
+tcptrack is a sniffer that displays information about TCP connections it
 sees on a network interface. It passively watches for connections on the
-network interface, keeps track of their state and displays a list of
-connections in a manner similar to the unix 'top' command. It displays
-source and destination addresses and ports, connection state, idle time, and
+network interface, keeps track of their state, and displays a list of
+connections in a manner similar to the UNIX top(1) command. It displays
+source and destination addresses, ports, connection state, idle time, and
 bandwidth usage.
 
-WWW: http://www.rhythm.cx/~steve/devel/tcptrack/
+WWW: http://BSDforge.com/projects/net-mgmt/tcptrack/


More information about the svn-ports-head mailing list