summaryrefslogtreecommitdiff
path: root/www/webresolve
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2000-12-19 12:10:33 +0000
committerWill Andrews <will@FreeBSD.org>2000-12-19 12:10:33 +0000
commit485813ce3935013672a5654cc99c9092588b9948 (patch)
tree5575d78d31131c12c7632a11a128ab85e810545d /www/webresolve
parentUpdate to 1.1.0. (diff)
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>
Notes
Notes: svn path=/head/; revision=36111
Diffstat (limited to 'www/webresolve')
-rw-r--r--www/webresolve/Makefile21
-rw-r--r--www/webresolve/distinfo1
-rw-r--r--www/webresolve/pkg-comment1
-rw-r--r--www/webresolve/pkg-descr17
-rw-r--r--www/webresolve/pkg-plist2
5 files changed, 42 insertions, 0 deletions
diff --git a/www/webresolve/Makefile b/www/webresolve/Makefile
new file mode 100644
index 000000000000..054434149dcb
--- /dev/null
+++ b/www/webresolve/Makefile
@@ -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>
diff --git a/www/webresolve/distinfo b/www/webresolve/distinfo
new file mode 100644
index 000000000000..2ebf247be2c6
--- /dev/null
+++ b/www/webresolve/distinfo
@@ -0,0 +1 @@
+MD5 (webresolve-0.0.1.tar.gz) = b0ecb991ebbf6b2c4cebe6e6ebfbce03
diff --git a/www/webresolve/pkg-comment b/www/webresolve/pkg-comment
new file mode 100644
index 000000000000..619a9507ab23
--- /dev/null
+++ b/www/webresolve/pkg-comment
@@ -0,0 +1 @@
+Webresolve resolves IP addresses to host names in web log files.
diff --git a/www/webresolve/pkg-descr b/www/webresolve/pkg-descr
new file mode 100644
index 000000000000..7360044ccafa
--- /dev/null
+++ b/www/webresolve/pkg-descr
@@ -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/
diff --git a/www/webresolve/pkg-plist b/www/webresolve/pkg-plist
new file mode 100644
index 000000000000..700c3889251d
--- /dev/null
+++ b/www/webresolve/pkg-plist
@@ -0,0 +1,2 @@
+bin/splitwr
+bin/webresolve