diff options
author | sada <sada@FreeBSD.org> | 2002-01-24 15:08:41 +0000 |
---|---|---|
committer | sada <sada@FreeBSD.org> | 2002-01-24 15:08:41 +0000 |
commit | 8c32535420cab83de78fb2bb57a7b7f48d513e1a (patch) | |
tree | 3b799307bed1f12d10f011929d16f10441e96998 | |
parent | 8f051358b482ba770b8392c8b5d73f953f17ef3a (diff) | |
download | FreeBSD-ports-8c32535420cab83de78fb2bb57a7b7f48d513e1a.zip FreeBSD-ports-8c32535420cab83de78fb2bb57a7b7f48d513e1a.tar.gz |
New port: Useful tools to deal with CLF files (Common Log File format)
PR: ports/33690
Submitted by: Mark Huizer; Eindhoven <xaa+ports@timewasters.nl>
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/logtools/Makefile | 19 | ||||
-rw-r--r-- | www/logtools/distinfo | 1 | ||||
-rw-r--r-- | www/logtools/files/patch-aa | 11 | ||||
-rw-r--r-- | www/logtools/files/patch-ab | 11 | ||||
-rw-r--r-- | www/logtools/pkg-comment | 1 | ||||
-rw-r--r-- | www/logtools/pkg-descr | 2 | ||||
-rw-r--r-- | www/logtools/pkg-plist | 6 |
8 files changed, 52 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 1d5ef39..97d42a3 100644 --- a/www/Makefile +++ b/www/Makefile @@ -129,6 +129,7 @@ SUBDIR += linux-netscape47-navigator SUBDIR += linux-netscape6 SUBDIR += linux-opera + SUBDIR += logtools SUBDIR += lynx SUBDIR += lynx-current SUBDIR += lynx-ssl diff --git a/www/logtools/Makefile b/www/logtools/Makefile new file mode 100644 index 0000000..803d628 --- /dev/null +++ b/www/logtools/Makefile @@ -0,0 +1,19 @@ +# New ports collection makefile for: logtools +# Date created: 8 January 2002 +# Whom: Mark Huizer; Eindhoven +# +# $FreeBSD$ +# + +PORTNAME= logtools +PORTVERSION= 0.13a +CATEGORIES= www +MASTER_SITES= http://www.coker.com.au/logtools/ +EXTRACT_SUFX= .tgz + +MAINTAINER= xaa+ports@timewasters.nl + +GNU_CONFIGURE= yes +MAN1= clfmerge.1 logprn.1 funnel.1 clfsplit.1 clfdomainsplit.1 + +.include <bsd.port.mk> diff --git a/www/logtools/distinfo b/www/logtools/distinfo new file mode 100644 index 0000000..f2df334 --- /dev/null +++ b/www/logtools/distinfo @@ -0,0 +1 @@ +MD5 (logtools-0.13a.tgz) = 1314bc118a9f60ff1b349ec38f5e964b diff --git a/www/logtools/files/patch-aa b/www/logtools/files/patch-aa new file mode 100644 index 0000000..396944c --- /dev/null +++ b/www/logtools/files/patch-aa @@ -0,0 +1,11 @@ +--- clfmerge.cpp.orig Tue Jan 8 17:15:37 2002 ++++ clfmerge.cpp Tue Jan 8 17:14:06 2002 +@@ -201,7 +201,7 @@ + unsigned int map_items = 0; + bool set_map_items = false, domain_mangling = false; + int int_c; +- optind = 0; ++ optind = 1; + while(-1 != (int_c = getopt(argc, argv, "b:hd")) ) + { + switch(char(int_c)) diff --git a/www/logtools/files/patch-ab b/www/logtools/files/patch-ab new file mode 100644 index 0000000..3bc4870 --- /dev/null +++ b/www/logtools/files/patch-ab @@ -0,0 +1,11 @@ +--- clfsplit.cpp.orig Tue Jan 8 17:41:53 2002 ++++ clfsplit.cpp Tue Jan 8 17:41:18 2002 +@@ -199,7 +199,7 @@ + MAP m; + FILE *input = stdin; + bool new_input = false; +- optind = 0; ++ optind = 1; + while(-1 != (int_c = getopt(argc, argv, "d:i:f:s:")) ) + { + switch(char(int_c)) diff --git a/www/logtools/pkg-comment b/www/logtools/pkg-comment new file mode 100644 index 0000000..5b07413 --- /dev/null +++ b/www/logtools/pkg-comment @@ -0,0 +1 @@ +Useful tools to deal with CLF files (Common Log File format) diff --git a/www/logtools/pkg-descr b/www/logtools/pkg-descr new file mode 100644 index 0000000..44156cc --- /dev/null +++ b/www/logtools/pkg-descr @@ -0,0 +1,2 @@ +Tools like clfmerge, clfsplit etc to simplify working with access log files +e.g. with virtual hosts diff --git a/www/logtools/pkg-plist b/www/logtools/pkg-plist new file mode 100644 index 0000000..f7310d7 --- /dev/null +++ b/www/logtools/pkg-plist @@ -0,0 +1,6 @@ +bin/clfmerge +bin/clfsplit +bin/clfdomainsplit +bin/logprn +bin/funnel +etc/clfdomainsplit.cfg |