diff options
author | zuntum <zuntum@pkgsrc.org> | 2002-05-11 10:21:28 +0000 |
---|---|---|
committer | zuntum <zuntum@pkgsrc.org> | 2002-05-11 10:21:28 +0000 |
commit | 159051ca7272522340afe42e97a592eab10e0500 (patch) | |
tree | 9d46cf71a2c70b410c82456b860ed8d600753191 /net/trafshow | |
parent | 5b728a2271201c615635f3efa11c0f910f3e63c9 (diff) | |
download | pkgsrc-159051ca7272522340afe42e97a592eab10e0500.tar.gz |
Check in fix from tron@netbsd.org so that now trafshow works with "ppp"
interface as well as with others. If you're using "pppd" and want to be
able to use trafshow to see what's going on on this interface,
you want to update.
Bumb PKGREVISION
Diffstat (limited to 'net/trafshow')
-rw-r--r-- | net/trafshow/Makefile | 3 | ||||
-rw-r--r-- | net/trafshow/distinfo | 3 | ||||
-rw-r--r-- | net/trafshow/patches/patch-aa | 14 |
3 files changed, 18 insertions, 2 deletions
diff --git a/net/trafshow/Makefile b/net/trafshow/Makefile index 4d82d5342d0..7b9dcad01c2 100644 --- a/net/trafshow/Makefile +++ b/net/trafshow/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.11 2001/08/27 14:35:13 tron Exp $ +# $NetBSD: Makefile,v 1.12 2002/05/11 10:21:28 zuntum Exp $ DISTNAME= trafshow-3.1 +PKGREVISION= 1 CATEGORIES= net MASTER_SITES= ftp://ftp.nsk.su/pub/RinetSoftware/ EXTRACT_SUFX= .tgz diff --git a/net/trafshow/distinfo b/net/trafshow/distinfo index 4cbfcb74c12..d4dfda8a4d7 100644 --- a/net/trafshow/distinfo +++ b/net/trafshow/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.2 2001/04/21 11:23:37 wiz Exp $ +$NetBSD: distinfo,v 1.3 2002/05/11 10:21:29 zuntum Exp $ SHA1 (trafshow-3.1.tgz) = 6d8b65d265c76cb85ecc26104cf9ec56db853cbc Size (trafshow-3.1.tgz) = 72342 bytes SHA1 (trafshow-31-v6-20010322a.diff.gz) = e396867457f8e758a30ac9aa533acbd61f3aa445 Size (trafshow-31-v6-20010322a.diff.gz) = 5490 bytes +SHA1 (patch-aa) = b148e50d762a0b914658788ce484eacf929e0e10 SHA1 (patch-af) = 82a3a7906d28465ec83724946b360508e59b655c SHA1 (patch-ag) = 981a63f03cce85b2f295901b7ea1e7930b859cf1 diff --git a/net/trafshow/patches/patch-aa b/net/trafshow/patches/patch-aa new file mode 100644 index 00000000000..5502fece78f --- /dev/null +++ b/net/trafshow/patches/patch-aa @@ -0,0 +1,14 @@ +$NetBSD: patch-aa,v 1.1 2002/05/11 10:21:29 zuntum Exp $ + +--- interfaces.c.orig Sat Aug 22 10:19:03 1998 ++++ interfaces.c +@@ -209,6 +209,9 @@ + { if_slip, DLT_SLIP_BSDOS }, /* libpcap stupid fake */ + #endif + { if_ppp, DLT_PPP }, /* PPP */ ++#ifdef DLT_PPP_SERIAL ++ { if_ppp, DLT_PPP_SERIAL }, /* PPP */ ++#endif + #ifdef DLT_PPP_BSDOS + { if_ppp, DLT_PPP_BSDOS }, /* libpcap stupid fake */ + #endif |