1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Add webresolve 0.0.1, a script that resolves IP addresses to host names

in web logfiles.

PR:		23333
Submitted by:	Joseph Scott <joseph@randomnetworks.com>
This commit is contained in:
Will Andrews 2000-12-19 12:10:33 +00:00
parent 4ebeeae91b
commit 485813ce39
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=36111
6 changed files with 43 additions and 0 deletions

View File

@ -201,6 +201,7 @@
SUBDIR += webglimpse
SUBDIR += weblint
SUBDIR += webredirect
SUBDIR += webresolve
SUBDIR += webstone
SUBDIR += webstone-ssl
SUBDIR += wml

21
www/webresolve/Makefile Normal file
View File

@ -0,0 +1,21 @@
# New ports collection makefile for: webresolve
# Date created: Wed 6 Dec 2000
# Whom: Joseph Scott <joseph@randomnetworks.com>
#
# $FreeBSD$
#
PORTNAME= webresolve
PORTVERSION= 0.0.1
CATEGORIES= www
MASTER_SITES= ftp://siag.nu/pub/webresolve/
MAINTAINER= joseph@randomnetworks.com
ALL_TARGET= webresolve
MAKE_ARGS= PREFIX=${PREFIX}
post-install:
@strip ${PREFIX}/bin/webresolve
.include <bsd.port.mk>

1
www/webresolve/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (webresolve-0.0.1.tar.gz) = b0ecb991ebbf6b2c4cebe6e6ebfbce03

View File

@ -0,0 +1 @@
Webresolve resolves IP addresses to host names in web log files.

17
www/webresolve/pkg-descr Normal file
View File

@ -0,0 +1,17 @@
This program is pretty slow. Thanks to the caching, repeated visits from the
same address will only result in one lookup. Therefore large files will be
processed proportionally faster than small ones.
The load from this program is very light, because it spends most of its time
waiting for the resolver. This also means that large files can take quite some
time to process. The solution is to split the log file and run several
resolution processes in parallel. This is done by the script splitwr:
splitwr logfile > logfile.resolved
webalizer logfile.resolved
rm logfile.resolved
By default, splitwr runs 20 parallel resolution processes. The number can be
changed by editing the script.
WWW: http://siag.nu/webresolve/

2
www/webresolve/pkg-plist Normal file
View File

@ -0,0 +1,2 @@
bin/splitwr
bin/webresolve