1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-03 01:23:49 +00:00

- Update to 0.9.7

- Take maintainership

PR:		ports/138921
Submitted by:	Sylvio Cesar <scjamorim@bsd.com.br>
Feature safe:	yes
This commit is contained in:
Pav Lucistnik 2009-09-18 11:02:03 +00:00
parent 51b4ec8d90
commit 64330e0390
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=241643
4 changed files with 5 additions and 37 deletions

View File

@ -6,12 +6,11 @@
#
PORTNAME= etherape
PORTVERSION= 0.9.6
PORTREVISION= 5
PORTVERSION= 0.9.7
CATEGORIES= net-mgmt gnome
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
MAINTAINER= scjamorim@bsd.com.br
COMMENT= A graphical network traffic visualization tool for gnome
USE_GETTEXT= yes

View File

@ -1,3 +1,3 @@
MD5 (etherape-0.9.6.tar.gz) = a6f2b27da7d25346b824c42762ada61f
SHA256 (etherape-0.9.6.tar.gz) = ab4e2f4dc90e2bccbf72f3bc750df4ea3c234fdbc31a85b640107f5b5c5e47fc
SIZE (etherape-0.9.6.tar.gz) = 860413
MD5 (etherape-0.9.7.tar.gz) = 7b5783090d92abe79634da4b582c6b48
SHA256 (etherape-0.9.7.tar.gz) = bca8857ee3fe3801410e2cc2777e358cc119761ef3e141bbbbabd8fd2e2f6b7b
SIZE (etherape-0.9.7.tar.gz) = 860868

View File

@ -1,20 +0,0 @@
--- src/capture.c.orig Sat Apr 29 09:58:35 2006
+++ src/capture.c Mon May 29 01:14:23 2006
@@ -464,10 +464,13 @@
return FALSE;
}
- /* preparing protocol summary and nodes/links catalogs */
- protocol_summary_open();
- nodes_catalog_open();
- links_catalog_open();
+ if (status != PAUSE)
+ {
+ /* preparing protocol summary and nodes/links catalogs */
+ protocol_summary_open();
+ nodes_catalog_open();
+ links_catalog_open();
+ }
/*
* See pause_capture for an explanation of why we don't always

View File

@ -1,11 +0,0 @@
--- src/resolv.c.orig Sat Apr 29 09:58:35 2006
+++ src/resolv.c Mon May 29 00:54:06 2006
@@ -500,7 +500,7 @@
*/
if (g_pethers_path == NULL)
{
- g_strdup_printf (g_pethers_path, "%s/%s",
+ g_pethers_path = g_strdup_printf ("%s/%s",
get_home_dir (), EPATH_PERSONAL_ETHERS);
}