forked from freebsd/freebsd-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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/
- Loading branch information
mich
authored and
mich
committed
Sep 21, 2006
1 parent
0364742
commit 6557e92
Showing
4 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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= [email protected] | ||
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]> |