diff options
author | mich <mich@FreeBSD.org> | 2006-09-21 17:42:00 +0800 |
---|---|---|
committer | mich <mich@FreeBSD.org> | 2006-09-21 17:42:00 +0800 |
commit | 6557e922673bf881fafac65d4895fe942c66ca2d (patch) | |
tree | aa7e3bf34032eb62cd7dbc1142bab7e56d4b79a7 /www | |
parent | 03647429cd0b23758cb620dee3045831602ab6ba (diff) | |
download | freebsd-ports-gnome-6557e922673bf881fafac65d4895fe942c66ca2d.tar.gz freebsd-ports-gnome-6557e922673bf881fafac65d4895fe942c66ca2d.tar.zst freebsd-ports-gnome-6557e922673bf881fafac65d4895fe942c66ca2d.zip |
- Add port apercu
A command-line (console) application to summarize information from Apache
logs, including hit counts, requests, referrers, and user activity.
WWW: http://www.incava.org/projects/apercu/
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/apercu/Makefile | 30 | ||||
-rw-r--r-- | www/apercu/distinfo | 3 | ||||
-rw-r--r-- | www/apercu/pkg-descr | 5 |
4 files changed, 39 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 2b746103e6a8..4898369d2874 100644 --- a/www/Makefile +++ b/www/Makefile @@ -26,6 +26,7 @@ SUBDIR += apache20 SUBDIR += apache21 SUBDIR += apache22 + SUBDIR += apercu SUBDIR += aria SUBDIR += aria2 SUBDIR += ashe diff --git a/www/apercu/Makefile b/www/apercu/Makefile new file mode 100644 index 000000000000..ad78c8e3794b --- /dev/null +++ b/www/apercu/Makefile @@ -0,0 +1,30 @@ +# ex:ts=8 +# Ports collection makefile for: apercu +# Date created: Sep 21, 2006 +# Whom: mich +# +# $FreeBSD$ +# + +PORTNAME= apercu +PORTVERSION= 1.0.2 +CATEGORIES= www +MASTER_SITES= http://www.incava.org/pub/apercu/ + +MAINTAINER= mich@FreeBSD.org +COMMENT= Summarize information from Apache logs + +USE_RUBY= yes +NO_BUILD= yes + +MAN1= apercu.1 +PLIST_FILES= bin/apercu + +pre-patch: + @${REINPLACE_CMD} -e 's|/usr/bin/ruby|${RUBY}|' ${WRKSRC}/apercu + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/apercu ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/apercu.1 ${MANPREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/www/apercu/distinfo b/www/apercu/distinfo new file mode 100644 index 000000000000..6d89d5a9a948 --- /dev/null +++ b/www/apercu/distinfo @@ -0,0 +1,3 @@ +MD5 (apercu-1.0.2.tar.gz) = f4bfd4adf92274c4440b3f40638196c7 +SHA256 (apercu-1.0.2.tar.gz) = 44b4cd8cd426fde0be9bcbc8beba3f6a19d50b523b47c1f6145fad353e52c940 +SIZE (apercu-1.0.2.tar.gz) = 10357 diff --git a/www/apercu/pkg-descr b/www/apercu/pkg-descr new file mode 100644 index 000000000000..2a5218a1c83a --- /dev/null +++ b/www/apercu/pkg-descr @@ -0,0 +1,5 @@ +A command-line (console) application to summarize information from Apache +logs, including hit counts, requests, referrers, and user activity. + +WWW: http://www.incava.org/projects/apercu/ +AUTHOR: Jeff Pace <jpace@incava.org> |