diff options
author | Doug Barton <dougb@FreeBSD.org> | 2011-09-03 07:23:04 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2011-09-03 07:23:04 +0000 |
commit | 2f55ac3c66b91d5fc49dce9d1838d9a65bc3c3ad (patch) | |
tree | 3d603e4e5dd0c59772a22a21a94435ce7cc088bb /comms | |
parent | ae1d1e9a47cf412f2fd4aa4e08f3beb14c1f6b59 (diff) | |
download | ports-2f55ac3c66b91d5fc49dce9d1838d9a65bc3c3ad.tar.gz ports-2f55ac3c66b91d5fc49dce9d1838d9a65bc3c3ad.zip |
Remove comms/hcidump. The only master site was a geocities web page
which disappeared almost 3 years ago.
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=281065
Diffstat (limited to 'comms')
-rw-r--r-- | comms/Makefile | 1 | ||||
-rw-r--r-- | comms/hcidump/Makefile | 25 | ||||
-rw-r--r-- | comms/hcidump/distinfo | 2 | ||||
-rw-r--r-- | comms/hcidump/files/patch-hcidump-Makefile | 19 | ||||
-rw-r--r-- | comms/hcidump/files/patch-parser-Makefile | 12 | ||||
-rw-r--r-- | comms/hcidump/files/patch-parser.c | 11 | ||||
-rw-r--r-- | comms/hcidump/pkg-descr | 4 |
7 files changed, 0 insertions, 74 deletions
diff --git a/comms/Makefile b/comms/Makefile index 3cd38cbb08ac..f7adeed03556 100644 --- a/comms/Makefile +++ b/comms/Makefile @@ -49,7 +49,6 @@ SUBDIR += gsmlib SUBDIR += hamfax SUBDIR += hamlib - SUBDIR += hcidump SUBDIR += hf SUBDIR += hso-kmod SUBDIR += hylafax diff --git a/comms/hcidump/Makefile b/comms/hcidump/Makefile deleted file mode 100644 index 742339097a47..000000000000 --- a/comms/hcidump/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# New ports collection makefile for: hcidump -# Date created: 10 Dec 2004 -# Whom: Pav Lucistnik <pav@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= hcidump -PORTVERSION= 1.5.1 -CATEGORIES= comms sysutils -MASTER_SITES= http://www.geocities.com/m_evmenkin/ - -MAINTAINER= pav@FreeBSD.org -COMMENT= Bluetooth traffic dumper, similar to tcpdump - -DEPRECATED= No Master Site -EXPIRATION_DATE= 2011-09-01 - -WRKSRC= ${WRKDIR}/${PORTNAME} - -MAN1= hcidump.1 -MANCOMPRESSED= yes -PLIST_FILES= bin/hcidump - -.include <bsd.port.mk> diff --git a/comms/hcidump/distinfo b/comms/hcidump/distinfo deleted file mode 100644 index db5382aa86f5..000000000000 --- a/comms/hcidump/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (hcidump-1.5.1.tar.gz) = fffd83539c9e1c565a381bc4e178597be0c64a1eb3364e6ce31db1f30827ab4e -SIZE (hcidump-1.5.1.tar.gz) = 32480 diff --git a/comms/hcidump/files/patch-hcidump-Makefile b/comms/hcidump/files/patch-hcidump-Makefile deleted file mode 100644 index cc47e508a4b5..000000000000 --- a/comms/hcidump/files/patch-hcidump-Makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- hcidump/Makefile.orig Fri Mar 12 23:16:58 2004 -+++ hcidump/Makefile Fri Dec 10 21:06:23 2004 -@@ -2,13 +2,12 @@ - # $FreeBSD$ - - PROG= hcidump --BINDIR= /usr/local/bin --MANDIR= /usr/local/man/man -+BINDIR= ${PREFIX}/bin -+MANDIR= ${PREFIX}/man/man - MAN1= hcidump.1 - SRCS= hcidump.c - WARNS?= 2 --DEBUG_FLAGS= -g --CFLAGS= -O2 -I../parser -+CFLAGS+= -I../parser - - DPADD+= ../parser/libparser.a - LDADD+= -L../parser -lparser diff --git a/comms/hcidump/files/patch-parser-Makefile b/comms/hcidump/files/patch-parser-Makefile deleted file mode 100644 index ecb5464b60d3..000000000000 --- a/comms/hcidump/files/patch-parser-Makefile +++ /dev/null @@ -1,12 +0,0 @@ ---- parser/Makefile.orig Fri Mar 12 23:16:59 2004 -+++ parser/Makefile Fri Dec 10 21:07:28 2004 -@@ -7,8 +7,7 @@ - MAN= - SRCS= bnep.c cmtp.c hidp.c l2cap.c rfcomm.c hci.c parser.c sdp.c - WARNS?= 2 --DEBUG_FLAGS= -g --CFLAGS= -O2 -+CFLAGS?= -O2 - - NOPROFILE= 1 - diff --git a/comms/hcidump/files/patch-parser.c b/comms/hcidump/files/patch-parser.c deleted file mode 100644 index 8ed8a87e7ed4..000000000000 --- a/comms/hcidump/files/patch-parser.c +++ /dev/null @@ -1,11 +0,0 @@ ---- parser/parser.c.ORIG Fri Sep 22 23:33:36 2006 -+++ parser/parser.c Fri Sep 22 23:34:45 2006 -@@ -65,7 +65,7 @@ - - if (!parser.state) { - if (parser.flags & DUMP_TSTAMP) -- printf("%8lu.%06lu ", f->ts.tv_sec, f->ts.tv_usec); -+ printf("%8lu.%06lu ", (unsigned long)f->ts.tv_sec, f->ts.tv_usec); - printf("%c ", (f->in ? '>' : '<')); - parser.state = 1; - } else diff --git a/comms/hcidump/pkg-descr b/comms/hcidump/pkg-descr deleted file mode 100644 index 455e813c92ca..000000000000 --- a/comms/hcidump/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -HCIdump reads raw HCI data coming from and going to a Bluetooth device and -prints to screen commands, events and data in a human-readable form. -Optionally, the dump can be written to a file rather than parsed, and the dump -file can be parsed in a subsequent moment. |