Bug 188862 - net-mgmt/etherape: Update to version 0.9.13
Summary: net-mgmt/etherape: Update to version 0.9.13
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Martin Wilke
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-04-21 19:10 UTC by tkato432
Modified: 2014-04-26 03:40 UTC (History)
0 users

See Also:


Attachments
file.diff (5.81 KB, patch)
2014-04-21 19:10 UTC, tkato432
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description tkato432 2014-04-21 19:10:02 UTC
- Update to version 0.9.13

New file:
files/patch-src__decocde_proto.c
files/patch-src__names.c

Remove file:
files/patch-src_decode_proto.c
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-04-21 19:10:15 UTC
Responsible Changed
From-To: freebsd-ports-bugs->miwi

miwi@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Comment 2 Martin Wilke freebsd_committer freebsd_triage 2014-04-26 03:31:47 UTC
State Changed
From-To: open->closed

Committed. Thanks!
Comment 3 dfilter service freebsd_committer freebsd_triage 2014-04-26 03:32:15 UTC
Author: miwi
Date: Sat Apr 26 02:32:10 2014
New Revision: 352214
URL: http://svnweb.freebsd.org/changeset/ports/352214
QAT: https://qat.redports.org/buildarchive/r352214/

Log:
  - Update to 0.9.13
  
  PR:		188862
  Submitted by:	Ports Fury

Added:
  head/net-mgmt/etherape/files/patch-src__decocde_proto.c   (contents, props changed)
  head/net-mgmt/etherape/files/patch-src__names.c   (contents, props changed)
Deleted:
  head/net-mgmt/etherape/files/patch-src_decode_proto.c
Modified:
  head/net-mgmt/etherape/Makefile
  head/net-mgmt/etherape/distinfo
  head/net-mgmt/etherape/pkg-plist

Modified: head/net-mgmt/etherape/Makefile
==============================================================================
--- head/net-mgmt/etherape/Makefile	Sat Apr 26 02:30:39 2014	(r352213)
+++ head/net-mgmt/etherape/Makefile	Sat Apr 26 02:32:10 2014	(r352214)
@@ -2,35 +2,21 @@
 # $FreeBSD$
 
 PORTNAME=	etherape
-PORTVERSION=	0.9.9
-PORTREVISION=	2
+PORTVERSION=	0.9.13
 CATEGORIES=	net-mgmt gnome
 MASTER_SITES=	SF
 
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Graphical network traffic visualization tool for gnome
 
-USE_GNOME=	libglade2 libgnomeui gnomehack gnomeprefix gnomedocutils
-USES=		gmake pkgconfig
-INSTALLS_OMF=	yes
+LICENSE=	GPLv2
+
+USES=		gettext gmake iconv pathfix pkgconfig
+USE_GNOME=	gnomedocutils gnomehier libglade2 libgnomeui 
 GNU_CONFIGURE=	yes
+INSTALLS_OMF=	yes
+
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 
-MAN1=		etherape.1
-
-NO_STAGE=	yes
-
-OPTIONS_DEFINE=	NLS
-
-.include <bsd.port.options.mk>
-
-.if ${PORT_OPTIONS:MNLS}
-USES+=		gettext
-PLIST_SUB+=		NLS=""
-.else
-CONFIGURE_ARGS+=	--disable-nls
-PLIST_SUB+=		NLS="@comment "
-.endif
-
 .include <bsd.port.mk>

Modified: head/net-mgmt/etherape/distinfo
==============================================================================
--- head/net-mgmt/etherape/distinfo	Sat Apr 26 02:30:39 2014	(r352213)
+++ head/net-mgmt/etherape/distinfo	Sat Apr 26 02:32:10 2014	(r352214)
@@ -1,2 +1,2 @@
-SHA256 (etherape-0.9.9.tar.gz) = 2f9b5a2fdfd62940fd20cb2d2536255337eb9b0cfd210457844cc8ac5117feec
-SIZE (etherape-0.9.9.tar.gz) = 1301421
+SHA256 (etherape-0.9.13.tar.gz) = 2a3d2a28b824ce4797529bb90d19a213d80e70f5b3f0cc5f455379aac31c09f7
+SIZE (etherape-0.9.13.tar.gz) = 1399211

Added: head/net-mgmt/etherape/files/patch-src__decocde_proto.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/etherape/files/patch-src__decocde_proto.c	Sat Apr 26 02:32:10 2014	(r352214)
@@ -0,0 +1,18 @@
+--- src/decode_proto.c.orig
++++ src/decode_proto.c
+@@ -27,6 +27,15 @@
+ #include "appdata.h"
+ #include <ctype.h>
+ #include <string.h>
++#ifdef HAVE_SYS_TYPES_H
++#include <sys/types.h>
++#endif
++#ifdef HAVE_SYS_SOCKET_H
++#include <sys/socket.h>
++#endif
++#ifdef HAVE_NETINET_IN_H
++#include <netinet/in.h>
++#endif
+ #ifdef HAVE_ARPA_INET_H
+ #include <arpa/inet.h>
+ #endif

Added: head/net-mgmt/etherape/files/patch-src__names.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/etherape/files/patch-src__names.c	Sat Apr 26 02:32:10 2014	(r352214)
@@ -0,0 +1,21 @@
+--- src/names.c.orig
++++ src/names.c
+@@ -21,7 +21,18 @@
+ #include <config.h>
+ #endif
+ 
++#ifdef HAVE_SYS_TYPES_H
++#include <sys/types.h>
++#endif
++#ifdef HAVE_SYS_SOCKET_H
++#include <sys/socket.h>
++#endif
++#ifdef HAVE_NETINET_IN_H
+ #include <netinet/in.h>
++#endif
++#ifdef HAVE_ARPA_INET_H
++#include <arpa/inet.h>
++#endif
+ #ifdef HAVE_UNISTD_H
+ #include <unistd.h>
+ #endif

Modified: head/net-mgmt/etherape/pkg-plist
==============================================================================
--- head/net-mgmt/etherape/pkg-plist	Sat Apr 26 02:30:39 2014	(r352213)
+++ head/net-mgmt/etherape/pkg-plist	Sat Apr 26 02:32:10 2014	(r352214)
@@ -1,6 +1,10 @@
 bin/etherape
-etc/etherape/services
+%%ETCDIR%%/services
+man/man1/etherape.1.gz
 share/applications/etherape.desktop
+%%DATADIR%%/glade/etherape.glade
+%%DATADIR%%/glade/etherape.png
+%%DATADIR%%/glade/nodes.xpm
 share/gnome/help/etherape/C/etherape.xml
 share/gnome/help/etherape/C/figures/all_nodes.eps
 share/gnome/help/etherape/C/figures/all_nodes.png
@@ -22,25 +26,23 @@ share/gnome/help/etherape/C/figures/pref
 share/gnome/help/etherape/C/figures/pref_diagram_dlg.png
 share/gnome/help/etherape/C/figures/pref_timings_dlg.eps
 share/gnome/help/etherape/C/figures/pref_timings_dlg.png
-share/gnome/help/etherape/C/figures/protocol_edit_dlg.eps
-share/gnome/help/etherape/C/figures/protocol_edit_dlg.png
 share/gnome/help/etherape/C/figures/proto_info.eps
 share/gnome/help/etherape/C/figures/proto_info.png
+share/gnome/help/etherape/C/figures/protocol_edit_dlg.eps
+share/gnome/help/etherape/C/figures/protocol_edit_dlg.png
+share/locale/de/LC_MESSAGES/etherape.mo
+share/locale/es/LC_MESSAGES/etherape.mo
+share/locale/fr/LC_MESSAGES/etherape.mo
+share/locale/it/LC_MESSAGES/etherape.mo
+share/locale/nl/LC_MESSAGES/etherape.mo
+share/locale/sv/LC_MESSAGES/etherape.mo
+share/locale/tr/LC_MESSAGES/etherape.mo
 share/omf/etherape/etherape-C.omf
 share/pixmaps/etherape.png
-%%DATADIR%%/glade/etherape.glade
-%%DATADIR%%/glade/etherape.png
-%%DATADIR%%/glade/pause.xpm
-%%DATADIR%%/glade/play.xpm
-%%DATADIR%%/glade/stop.xpm
-%%NLS%%share/locale/es/LC_MESSAGES/etherape.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/etherape.mo
-%%NLS%%share/locale/nl/LC_MESSAGES/etherape.mo
-%%NLS%%share/locale/tr/LC_MESSAGES/etherape.mo
 @dirrm share/omf/etherape
 @dirrm share/gnome/help/etherape/C/figures
 @dirrm share/gnome/help/etherape/C
 @dirrm share/gnome/help/etherape
 @dirrm %%DATADIR%%/glade
 @dirrm %%DATADIR%%
-@dirrm etc/etherape
+@dirrm %%ETCDIR%%
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"