1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

Add httpgrabber-1.0, a HTTP network traffic grabber and extractor

PR:		30358
Submitted by:	Edwin Groothuis <edwin@mavetju.org>
This commit is contained in:
Pete Fritchman 2001-11-06 18:03:15 +00:00
parent 133eb30843
commit 18469d84a7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=49682
7 changed files with 65 additions and 0 deletions

View File

@ -84,6 +84,7 @@
SUBDIR += http-analyze
SUBDIR += http_load
SUBDIR += httperf
SUBDIR += httpgrabber
SUBDIR += httptunnel
SUBDIR += httrack
SUBDIR += hypermail

19
www/httpgrabber/Makefile Normal file
View File

@ -0,0 +1,19 @@
# New ports collection makefile for: httpgrabber
# Date created: 5 september 2001
# Whom: Edwin Groothuis (edwin@mavetju.org)
#
# $FreeBSD$
#
PORTNAME= httpgrabber
PORTVERSION= 1.0
CATEGORIES= net
MASTER_SITES= http://www.mavetju.org/download/
MAINTAINER= edwin@mavetju.org
LIB_DEPENDS= ngrep.1:${PORTSDIR}/net/ngrep-lib
MAN8= httpgrabber.8
.include <bsd.port.mk>

1
www/httpgrabber/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (httpgrabber-1.0.tar.gz) = 2337d44547be4ab97c371391781960e4

View File

@ -0,0 +1,34 @@
$FreeBSD$
--- Makefile.orig Wed Sep 5 05:35:02 2001
+++ Makefile Tue Nov 6 12:55:33 2001
@@ -2,9 +2,9 @@
# $Id: Makefile,v 1.3 2001/09/05 09:31:57 mavetju Exp $
#
-CC=gcc
-CFLAGS=-g -Wall -I/usr/local/include -c
-LFLAGS=-g -Wall -L/usr/local/lib
+CC?=gcc
+CFLAGS+=-g -Wall -I${PREFIX}/include -c
+LFLAGS=-g -Wall -L${PREFIX}/lib
LIBS=-lngrep -lpcap
all: httpgrabber
@@ -16,12 +16,12 @@
$(CC) $(CFLAGS) -o httpgrabber.o httpgrabber.c
install: httpgrabber httpgrabber.8
- install -c -m 755 -o root httpgrabber /usr/local/bin
- install -c -m 755 -o root httpgrabber.8 /usr/local/man/man8
+ install -c -m 755 -o root httpgrabber ${PREFIX}/bin
+ install -c -m 755 -o root httpgrabber.8 ${PREFIX}/man/man8
uninstall:
- rm /usr/local/bin/httpgrabber
- rm /usr/local/man/man8/httpgrabber.8
+ rm ${PREFIX}/bin/httpgrabber
+ rm ${PREFIX}/man/man8/httpgrabber.8
clean:
rm -rf httpgrabber httpgrabber.o httpgrabber.core

View File

@ -0,0 +1 @@
HTTP network traffic grabber and extractor

View File

@ -0,0 +1,8 @@
HTTPgrabber saves the information being sent via the HTTP
protocol on disk. In other words, you can use it to see
what other people on your LAN are downloading.
WWW: http://www.mavetju.org
- Edwin Groothuis
edwin@mavetju.org

View File

@ -0,0 +1 @@
bin/httpgrabber