debian/0000755000000000000000000000000012265125451007171 5ustar debian/changelog0000644000000000000000000000164112265124521011042 0ustar netmate (0.2.0-3) unstable; urgency=medium
* Added the fix-linking patch, that fix ftbfs with --as-needed.
Thanks to Jackson Doak .
* debian/copyright: updated the packaging copyright years.
* debian/source/lintian-overrides: removed as requested by Paul Wise. Thanks
to Paul for explanations about the idea of the GPG sign check.
-- Joao Eriberto Mota Filho Tue, 14 Jan 2014 00:59:07 -0200
netmate (0.2.0-2) unstable; urgency=medium
* Bumped the Standards-Version from 3.9.4 to 3.9.5.
* debian/source/: added an override to reply to check-gpg-signature.
* debian/watch: improved (little change).
-- Joao Eriberto Mota Filho Wed, 25 Dec 2013 20:56:27 -0200
netmate (0.2.0-1) unstable; urgency=low
* Initial upload (Closes: 725828).
-- Joao Eriberto Mota Filho Sun, 17 Nov 2013 09:09:44 -0200
debian/gbp.conf0000644000000000000000000000006512237732453010616 0ustar [DEFAULT]
debian-branch = debian
pristine-tar = True
debian/source/0000755000000000000000000000000012265124257010474 5ustar debian/source/format0000644000000000000000000000001412222106026011665 0ustar 3.0 (quilt)
debian/rules0000755000000000000000000000007612265125443010255 0ustar #!/usr/bin/make -f
#export DH_VERBOSE=1
%:
dh $@ --parallel
debian/watch0000644000000000000000000000017012256661612010224 0ustar version=3
opts="uversionmangle=s/0.16/0.1.6/" \
https://github.com/Rup0rt/netmate/releases .*/archive/v(\d\S*)\.tar\.gz
debian/compat0000644000000000000000000000000212222106047010360 0ustar 9
debian/control0000644000000000000000000000170712256661335010607 0ustar Source: netmate
Section: net
Priority: optional
Maintainer: Joao Eriberto Mota Filho
Build-Depends: debhelper (>= 9), libgtk-3-dev, libpcap-dev
Standards-Version: 3.9.5
Homepage: https://github.com/Rup0rt/netmate
Vcs-Git: git://anonscm.debian.org/collab-maint/netmate.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/netmate.git;a=summary
Package: netmate
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: netdude clone that shows pcap dump lines in network header style
netmate was inspired in netdude[1] (dead) and can be used to learn and teach
about TCP/IP protocols. It is a GTK+ program that shows lines selected from
files in pcap style (generated by tcpdump and Wireshark or another code based
in libpcap) as 32-bit headers, identical to the used by RFCs.
.
This program works with Ethernet, IPv4, IPv6, TCP, UDP, ICMP, ICMP6, NDP and
others.
.
[1] http://netdude.sourceforge.net
debian/menu0000644000000000000000000000026012234270503010051 0ustar ?package(netmate):needs="X11" \
title="Netmate" \
command="/usr/bin/netmate" \
section="Applications/Education" \
icon="/usr/share/pixmaps/netmate.xpm"
debian/copyright0000644000000000000000000000212012265124444011120 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: netmate
Source: https://github.com/Rup0rt/netmate
Files: *
Copyright: 2013 Robert Krause
License: GPL-3.0+
Files: debian/*
Copyright: 2013-2014 Joao Eriberto Mota Filho
License: GPL-3.0+
License: GPL-3.0+
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
.
On Debian systems, the complete text of the GNU General
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
debian/patches/0000755000000000000000000000000012265125014010613 5ustar debian/patches/series0000644000000000000000000000001412265123454012031 0ustar fix-linking
debian/patches/fix-linking0000644000000000000000000000101212265125014012747 0ustar Description: fix linking to stop FTBFS with --as-needed.
Author: Jackson Doak
Last-Update: 2014-01-10
Forwarded: https://github.com/Rup0rt/netmate/issues/1
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@
all: netmate.c layer2.h layer3.h layer4.h
gcc $(CPPFLAGS) $(GTK_CFLAGS) $(CFLAGS) -c netmate.c -o netmate.o
- gcc $(GTK_LIBS) -lpcap $(LDFLAGS) netmate.o -o netmate
+ gcc $(LDFLAGS) netmate.o $(GTK_LIBS) -lpcap -o netmate
install:
install -D -m 755 netmate $(DESTDIR)/$(BINDIR)/netmate